/* libc/posix/sleep.c - sleep function */ /* Written 2000 by Werner Almesberger */ #ifdef HAVE_NANOSLEEP #include #include #include #include unsigned sleep(unsigned seconds) { struct timespec ts; ts.tv_sec = seconds; ts.tv_nsec = 0; if (!nanosleep(&ts,&ts)) return 0; if (errno == EINTR) return ts.tv_sec & UINT_MAX; return -1; } #endif