Penguin
Blame: nanosleep(2)
EditPageHistoryDiffInfoLikePages
Annotated edit history of nanosleep(2) version 5, including all changes. View license author blame.
Rev Author # Line
1 perry 1 !!NAME
5 PerryLorier 2 nanosleep - pause execution for a specified time
1 perry 3 !!SYNOPSIS
5 PerryLorier 4 __#include <time.h>__
5 __int nanosleep(const struct timespec *__''req''__, struct timespec *__''rem''__);__
1 perry 6 !!DESCRIPTION
5 PerryLorier 7 nanosleep(2) delays the execution of the program for at least the time specified in ''*req''. The function can return earlier if a signal has been delivered to the process. In this case, it returns -1, sets ''errno'' to [EINTR], and writes the remaining time into the structure pointed to by ''rem'' unless ''rem'' is __NULL__. The value of ''*rem'' can then be used to call __nanosleep__ again and complete the specified pause.
1 perry 8
5 PerryLorier 9 The structure ''timespec'' is used to specify intervals of time with nanosecond precision. It is specified in ''<time.h>'' and has the form
1 perry 10
5 PerryLorier 11 struct timespec
12 {
13 time_t tv_sec; /* seconds */
14 long tv_nsec; /* nanoseconds */
15 };
1 perry 16
5 PerryLorier 17 The value of the nanoseconds field must be in the range 0 to 999 999 999.
1 perry 18
5 PerryLorier 19 Compared to sleep(3) and usleep(3), __nanosleep__ has the advantage of not affecting any signals, it is standardized by [POSIX], it provides higher
20 timing resolution, and it allows to continue a sleep that has been interrupted by a signal more easily.
1 perry 21 !!ERRORS
5 PerryLorier 22 In case of an error or exception, the __nanosleep__ system call returns -1 instead of 0 and sets ''errno'' to one of the following values:
1 perry 23
5 PerryLorier 24 ;[EINTR]: The pause has been interrupted by a non-blocked signal that was delivered to the process. The remaining sleep time has been written into *''rem'' so that the process can easily call nanosleep(2) again and continue with the pause.
1 perry 25
5 PerryLorier 26 ;[EINVAL]: The value in the ''tv_nsec'' field was not in the range 0 to 999 999 999 or ''tv_sec'' was negative.
1 perry 27
28 !!BUGS
5 PerryLorier 29 The current implementation of __nanosleep__ is based on the normal kernel timer mechanism, which has a resolution of 1/''HZ'' s (i.e, 10 ms on Linux/i386 and 1 ms on
30 Linux/Alpha). Therefore, __nanosleep__ pauses always for at least the specified time, however it can take up to 10 ms longer than specified until the process becomes runnable again. For the same reason, the value returned in case of a delivered signal in *''rem'' is usually rounded to the next larger multiple of 1/''HZ'' s.
1 perry 31
5 PerryLorier 32 As some applications require much more precise pauses (e.g., in order to control some time-critical hardware), __nanosleep__ is also capable of short high-precision
33 pauses. If the process is scheduled under a real-time policy like ''SCHED_FIFO'' or ''SCHED_RR'', then pauses of up to 2 ms will be performed as busy waits with microsecond precision.
1 perry 34
35 !!CONFORMING TO
5 PerryLorier 36 POSIX.1b (formerly POSIX.4).
1 perry 37
38 !!SEE ALSO
5 PerryLorier 39 sleep(3), usleep(3), sched_setscheduler(2), timer_create(2)
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.

PHP Warning

lib/blame.php:177: Warning: Invalid argument supplied for foreach() (...repeated 4 times)