URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [newlib-1.18.0/] [newlib/] [libc/] [machine/] [spu/] [sleep.c] - Rev 207
Go to most recent revision | Compare with Previous | Blame | View Log
/* 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; }
Go to most recent revision | Compare with Previous | Blame | View Log