summaryrefslogtreecommitdiff
path: root/src/time/clock_nanosleep.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-19 12:43:56 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-19 12:43:56 -0500
commit4b1244a0bfec55bc4cad91ff157997929f106215 (patch)
tree62c43bf546b567ceaefede18d860721bdc52bb6a /src/time/clock_nanosleep.c
parent19eb13b9a4cf2f787f60b6e2a6d26a6cd7d3ffd2 (diff)
downloadmusl-4b1244a0bfec55bc4cad91ff157997929f106215.tar.gz
implement the remaining clock_* interfaces
Diffstat (limited to 'src/time/clock_nanosleep.c')
-rw-r--r--src/time/clock_nanosleep.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/time/clock_nanosleep.c b/src/time/clock_nanosleep.c
new file mode 100644
index 00000000..c5646de3
--- /dev/null
+++ b/src/time/clock_nanosleep.c
@@ -0,0 +1,8 @@
+#define SYSCALL_RETURN_ERRNO
+#include <time.h>
+#include "syscall.h"
+
+int clock_nanosleep(clockid_t clk, int flags, const struct timespec *req, struct timespec *rem)
+{
+ return syscall4(__NR_clock_nanosleep, clk, flags, (long)req, (long)rem);
+}