mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
9b15ac9054
* libc/posix/Makefile.am (GENERAL_SOURCES): Add sleep.c and usleep.c. * libc/posix/Makefile.in: Regenerate. * libc/posix/sleep.c: New file. * libc/posix/usleep.c: Ditto.
23 lines
377 B
C
23 lines
377 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>
|
|
|
|
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;
|
|
return -1;
|
|
}
|
|
|
|
#endif
|