OpenBSD manual page server

Manual Page Search Parameters

NANOSLEEP(2) System Calls Manual NANOSLEEP(2)

nanosleephigh resolution sleep

#include <time.h>

int
nanosleep(const struct timespec *rqtp, struct timespec *rmtp);

() suspends execution of the calling process for the time specified. An unmasked signal will cause it to terminate the sleep early, regardless of the SA_RESTART value on the interrupting signal.

If 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 -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).

If any of the following conditions occur, the nanosleep() function shall return -1 and set errno to the corresponding value.

[]
Either rqtp or rmtp points to memory that is not a valid part of the process address space.
[]
nanosleep was interrupted by the delivery of a signal.
[]
rqtp specified a nanosecond value less than zero or greater than 1000 million, or a second value less than zero or greater than 100 million.
[]
nanosleep is not supported by this implementation.

sleep(1), sleep(3)

The nanosleep() function conforms to IEEE Std 1003.1b-1993 (“POSIX.1b”).

October 24, 2008 OpenBSD-5.1