Refer to new POSIX:2008 standard.
[gnulib.git] / doc / posix-functions / sleep.texi
1 @node sleep
2 @section @code{sleep}
3 @findex sleep
4
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/sleep.html}
6
7 Gnulib module: sleep
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function is missing on some platforms:
13 mingw (2005 or newer).
14 @item
15 This function takes milliseconds as argument and returns @code{void} on some
16 platforms:
17 mingw (2005 and older).
18 @end itemize
19
20 Portability problems not fixed by Gnulib:
21 @itemize
22 @item
23 According to POSIX, the @code{sleep} function may interfere with the program's
24 use of the @code{SIGALRM} signal.  On Linux, it doesn't; on other platforms,
25 it may.
26 @end itemize