diff options
Diffstat (limited to 'newlib/libc/machine/spu/sleep.c')
-rw-r--r-- | newlib/libc/machine/spu/sleep.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/newlib/libc/machine/spu/sleep.c b/newlib/libc/machine/spu/sleep.c new file mode 100644 index 000000000..f3aa97954 --- /dev/null +++ b/newlib/libc/machine/spu/sleep.c @@ -0,0 +1,18 @@ +/* Copied from libc/posix/sleep.c, removed the check for HAVE_NANOSLEEP */ + +/* Written 2000 by Werner Almesberger */ + +#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; +} |