OSDN Git Service

74737ed96f2f590c96e250910644fd7b33dbb2c9
[linuxjm/LDP_man-pages.git] / original / man3 / sleep.3
1 .\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Modified Sat Jul 24 18:16:02 1993 by Rik Faith (faith@cs.unc.edu)
26 .TH SLEEP 3  2010-02-03 "GNU" "Linux Programmer's Manual"
27 .SH NAME
28 sleep \- sleep for the specified number of seconds
29 .SH SYNOPSIS
30 .nf
31 .B #include <unistd.h>
32 .sp
33 .BI "unsigned int sleep(unsigned int " "seconds" );
34 .fi
35 .SH DESCRIPTION
36 .BR sleep ()
37 makes the calling thread sleep until
38 .I seconds
39 seconds have elapsed or a signal arrives which is not ignored.
40 .SH RETURN VALUE
41 Zero if the requested time has elapsed,
42 or the number of seconds left to sleep,
43 if the call was interrupted by a signal handler.
44 .SH CONFORMING TO
45 POSIX.1-2001.
46 .SH BUGS
47 .BR sleep ()
48 may be implemented using
49 .BR SIGALRM ;
50 mixing calls to
51 .BR alarm (2)
52 and
53 .BR sleep ()
54 is a bad idea.
55 .PP
56 Using
57 .BR longjmp (3)
58 from a signal handler or modifying the handling of
59 .B SIGALRM
60 while sleeping will cause undefined results.
61 .SH SEE ALSO
62 .BR alarm (2),
63 .BR nanosleep (2),
64 .BR signal (2),
65 .BR signal (7)
66 .SH COLOPHON
67 This page is part of release 3.67 of the Linux
68 .I man-pages
69 project.
70 A description of the project,
71 information about reporting bugs,
72 and the latest version of this page,
73 can be found at
74 \%http://www.kernel.org/doc/man\-pages/.