summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/getitimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/getitimer.c')
-rw-r--r--cpukit/posix/src/getitimer.c17
1 files changed, 11 insertions, 6 deletions
diff --git a/cpukit/posix/src/getitimer.c b/cpukit/posix/src/getitimer.c
index 1892a6016f..8d1bb97904 100644
--- a/cpukit/posix/src/getitimer.c
+++ b/cpukit/posix/src/getitimer.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2008.
+ * COPYRIGHT (c) 1989-20089
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -23,12 +23,17 @@ int getitimer(
struct itimerval *value
)
{
+ if ( !value )
+ rtems_set_errno_and_return_minus_one( EFAULT );
+
switch ( which ) {
- case ITIMER_REAL: break;
- case ITIMER_VIRTUAL: break;
- case ITIMER_PROF: break;
+ case ITIMER_REAL:
+ case ITIMER_VIRTUAL:
+ case ITIMER_PROF:
+ rtems_set_errno_and_return_minus_one( ENOSYS );
+ default:
+ break;
}
- rtems_set_errno_and_return_minus_one( ENOSYS );
- /* return -1; */
+ rtems_set_errno_and_return_minus_one( EINVAL );
}