Query: nanosleep
OS: netbsd
Section: 2
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NANOSLEEP(2) BSD System Calls Manual NANOSLEEP(2)NAMEnanosleep -- high resolution sleepLIBRARYStandard C Library (libc, -lc)SYNOPSIS#include <time.h> int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);DESCRIPTIONThe nanosleep() suspends execution of the calling process until either the number of seconds and nanoseconds specified by rqtp have elapsed or a signal is delivered to the calling process and its action is to invoke a signal catching function or to terminate the process. The sus- pension time may be longer than requested due to the scheduling of other activity by the system. The struct timespec is described in timespec(3).RETURN VALUESIf the nanosleep() function returns because the requested time has elapsed, the value returned will be zero. If the nanosleep() function returns due to the delivery of a signal, the value returned will be the -1, and the global variable errno will be set to indicate 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).ERRORSIf any of the following conditions occur, the nanosleep function shall return -1 and set errno to the corresponding value. [EFAULT] Either rqtp or rmtp points to memory that is not a valid part of the process address space. [EINTR] nanosleep was interrupted by the delivery of a signal. [EINVAL] rqtp specified a nanosecond value less than zero or greater than 1000 million. [ENOSYS] nanosleep is not supported by this implementation.SEE ALSOsleep(3), timespec(3)STANDARDSThe nanosleep() function conforms to IEEE Std 1003.1b-1993 (``POSIX.1'').BSDMay 17, 2010 BSD
Related Man Pages |
---|
nanosleep(3p) - centos |
nanosleep(3posix) - posix |
nanosleep(3p) - opendarwin |
nanosleep(3p) - php |
nanosleep(3p) - v7 |
Similar Topics in the Unix Linux Community |
---|
nanosleep |
nanosleep returns prematurely, with return value 0 |
Where is nanosleep? |
Nanosleep in signal call |