Query: nanosleep
OS: osx
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NANOSLEEP(2) BSD System Calls Manual NANOSLEEP(2)NAMEnanosleep -- suspend thread execution for an interval measured in nanosecondsLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <time.h> int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);DESCRIPTIONThe nanosleep() function causes the calling thread to sleep for the amount of time specified in rqtp (the actual time slept may be longer, due to system latencies and possible limitations in the timer resolution of the hardware). An unmasked signal will cause nanosleep() to ter- minate the sleep early, regardless of the SA_RESTART value on the interrupting signal.RETURN VALUESIf nanosleep() returns because the requested time has elapsed, the value returned will be zero. If nanosleep() returns due to the delivery of a signal, the value returned will be the -1, and the global variable errno will be set to indi- cate the interruption. If rmtp is non-NULL, the timespec structure it references is updated to contain the unslept amount (the request time minus the time actually slept).ERRORSThe nanosleep() call fails if: [EINTR] nanosleep() was interrupted by the delivery of a signal. [EINVAL] rqtp specified a nanosecond value less than zero or greater than or equal to 1000 million.SEE ALSOsigsuspend(2), sleep(3)STANDARDSThe nanosleep() function conforms to IEEE Std 1003.1b-1993 (``POSIX.1'').BSDApril 17, 1997 BSD
Related Man Pages |
---|
nanosleep(2) - mojave |
nanosleep(3rt) - sunos |
nanosleep(2) - netbsd |
nanosleep(3p) - suse |
nanosleep(3posix) - posix |
Similar Topics in the Unix Linux Community |
---|
nanosleep |
nanosleep returns prematurely, with return value 0 |
Where is nanosleep? |
Nanosleep in signal call |