From d05ab3519a2b742b0eed656995ac9ea0e6d5699e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 20 Nov 2008 21:52:19 +0000 Subject: 2008-11-20 Joel Sherrill * posix/Makefile.am, posix/include/rtems/posix/psignal.h: Add stubs for gettimer() and setitimer(). * posix/src/getitimer.c, posix/src/setitimer.c: New files. --- cpukit/posix/src/getitimer.c | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 cpukit/posix/src/getitimer.c (limited to 'cpukit/posix/src/getitimer.c') diff --git a/cpukit/posix/src/getitimer.c b/cpukit/posix/src/getitimer.c new file mode 100644 index 0000000000..1892a6016f --- /dev/null +++ b/cpukit/posix/src/getitimer.c @@ -0,0 +1,34 @@ +/* + * COPYRIGHT (c) 1989-2008. + * On-Line Applications Research Corporation (OAR). + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + * + * $Id$ + */ + +#if HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include +#include + +int getitimer( + int which, + struct itimerval *value +) +{ + switch ( which ) { + case ITIMER_REAL: break; + case ITIMER_VIRTUAL: break; + case ITIMER_PROF: break; + } + rtems_set_errno_and_return_minus_one( ENOSYS ); + /* return -1; */ +} + -- cgit v1.2.3