summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/getitimer.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-11-20 21:52:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-11-20 21:52:19 +0000
commitd05ab3519a2b742b0eed656995ac9ea0e6d5699e (patch)
treee305211aec78c752f4f7545afde6136e0c603b42 /cpukit/posix/src/getitimer.c
parent2008-11-20 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-d05ab3519a2b742b0eed656995ac9ea0e6d5699e.tar.bz2
2008-11-20 Joel Sherrill <joel.sherrill@oarcorp.com>
* 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.
Diffstat (limited to 'cpukit/posix/src/getitimer.c')
-rw-r--r--cpukit/posix/src/getitimer.c34
1 files changed, 34 insertions, 0 deletions
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 <time.h>
+#include <sys/time.h>
+#include <errno.h>
+#include <rtems/seterr.h>
+
+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; */
+}
+