4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00
2022-08-31 15:18:08 -04:00

24 lines
408 B
C

/* libc/posix/sleep.c - sleep function */
/* Written 2000 by Werner Almesberger */
#ifdef HAVE_NANOSLEEP
#include <errno.h>
#include <time.h>
#include <unistd.h>
#include <limits.h>
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