summaryrefslogtreecommitdiff
path: root/src/time/nanosleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/nanosleep.c')
-rw-r--r--src/time/nanosleep.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/time/nanosleep.c b/src/time/nanosleep.c
new file mode 100644
index 00000000..5ac4c359
--- /dev/null
+++ b/src/time/nanosleep.c
@@ -0,0 +1,13 @@
+#include <unistd.h>
+#include <time.h>
+#include "syscall.h"
+#include "libc.h"
+
+int nanosleep(const struct timespec *req, struct timespec *rem)
+{
+ int ret;
+ CANCELPT_BEGIN;
+ ret = syscall2(__NR_nanosleep, (long)req, (long)rem);
+ CANCELPT_END;
+ return ret;
+}