cuserid: support invocation with a null pointer argument
[musl.git] / src / thread / thrd_sleep.c
blob97de53455ede450885fcd6bdd6bb6de09b97071a
1 #include <threads.h>
2 #include <time.h>
3 #include <errno.h>
4 #include "syscall.h"
6 int thrd_sleep(const struct timespec *req, struct timespec *rem)
8 int ret = -__clock_nanosleep(CLOCK_REALTIME, 0, req, rem);
9 switch (ret) {
10 case 0: return 0;
11 case -EINTR: return -1; /* value specified by C11 */
12 default: return -2;