implement the remaining clock_* interfaces
[musl] / src / time / clock_nanosleep.c
diff --git a/src/time/clock_nanosleep.c b/src/time/clock_nanosleep.c
new file mode 100644 (file)
index 0000000..c5646de
--- /dev/null
@@ -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);
+}