summaryrefslogtreecommitdiffstats
path: root/man-pages-posix-2017/man3p/sleep.3p
blob: 26b5b3ed2c2a05819619634bae15f69bc26d7471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
'\" et
.TH SLEEP "3P" 2017 "IEEE/The Open Group" "POSIX Programmer's Manual"
.\"
.SH PROLOG
This manual page is part of the POSIX Programmer's Manual.
The Linux implementation of this interface may differ (consult
the corresponding Linux manual page for details of Linux behavior),
or the interface may not be implemented on Linux.
.\"
.SH NAME
sleep
\(em suspend execution for an interval of time
.SH SYNOPSIS
.LP
.nf
#include <unistd.h>
.P
unsigned sleep(unsigned \fIseconds\fP);
.fi
.SH DESCRIPTION
The
\fIsleep\fR()
function shall cause the calling thread to be suspended from execution
until either the number of realtime seconds specified by the argument
.IR seconds
has elapsed or a signal is delivered to the calling thread and its
action is to invoke a signal-catching function or to terminate the
process. The suspension time may be longer than requested due to the
scheduling of other activity by the system.
.P
In single-threaded programs,
\fIsleep\fR()
may make use of SIGALRM. In multi-threaded programs,
\fIsleep\fR()
shall not make use of SIGALRM and the remainder of this DESCRIPTION
does not apply.
.P
If a SIGALRM signal is generated for the calling process during
execution of
\fIsleep\fR()
and if the SIGALRM signal is being ignored or blocked from delivery, it
is unspecified whether
\fIsleep\fR()
returns when the SIGALRM signal is scheduled. If the signal is being
blocked, it is also unspecified whether it remains pending after
\fIsleep\fR()
returns or it is discarded.
.P
If a SIGALRM signal is generated for the calling process during
execution of
\fIsleep\fR(),
except as a result of a prior call to
\fIalarm\fR(),
and if the SIGALRM signal is not being ignored or blocked from
delivery, it is unspecified whether that signal has any effect other
than causing
\fIsleep\fR()
to return.
.P
If a signal-catching function interrupts
\fIsleep\fR()
and examines or changes either the time a SIGALRM is scheduled to be
generated, the action associated with the SIGALRM signal, or whether
the SIGALRM signal is blocked from delivery, the results are
unspecified.
.P
If a signal-catching function interrupts
\fIsleep\fR()
and calls
\fIsiglongjmp\fR()
or
\fIlongjmp\fR()
to restore an environment saved prior to the
\fIsleep\fR()
call, the action associated with the SIGALRM signal and the time at
which a SIGALRM signal is scheduled to be generated are unspecified.
It is also unspecified whether the SIGALRM signal is blocked, unless
the signal mask of the process is restored as part of the environment.
.P
Interactions between
\fIsleep\fR()
and
\fIsetitimer\fR()
are unspecified.
.SH "RETURN VALUE"
If
\fIsleep\fR()
returns because the requested time has elapsed, the value returned
shall be 0. If
\fIsleep\fR()
returns due to delivery of a signal, the return value shall be
the ``unslept'' amount (the requested time minus the time actually
slept) in seconds.
.SH ERRORS
No errors are defined.
.LP
.IR "The following sections are informative."
.SH EXAMPLES
None.
.SH "APPLICATION USAGE"
None.
.SH RATIONALE
There are two general approaches to the implementation of the
\fIsleep\fR()
function. One is to use the
\fIalarm\fR()
function to schedule a SIGALRM
signal and then suspend the calling thread waiting for that signal. The
other is to implement an independent facility. This volume of POSIX.1\(hy2017 permits either
approach in single-threaded programs, but the simple alarm/suspend
implementation is not appropriate for multi-threaded programs.
.P
In order to comply with the requirement that no primitive shall change
a process attribute unless explicitly described by this volume of POSIX.1\(hy2017, an
implementation using SIGALRM must carefully take into account any
SIGALRM signal scheduled by previous
\fIalarm\fR()
calls, the action previously established for SIGALRM, and whether
SIGALRM was blocked. If a SIGALRM has been scheduled before the
\fIsleep\fR()
would ordinarily complete, the
\fIsleep\fR()
must be shortened to that time and a SIGALRM generated (possibly
simulated by direct invocation of the signal-catching function) before
\fIsleep\fR()
returns. If a SIGALRM has been scheduled after the
\fIsleep\fR()
would ordinarily complete, it must be rescheduled for the same time
before
\fIsleep\fR()
returns. The action and blocking for SIGALRM must be saved and
restored.
.P
Historical implementations often implement the SIGALRM-based version
using
\fIalarm\fR()
and
\fIpause\fR().
One such implementation is prone to infinite hangups, as described in
.IR "\fIpause\fR\^(\|)".
Another such implementation uses the C-language
\fIsetjmp\fR()
and
\fIlongjmp\fR()
functions to avoid that window. That implementation introduces a
different problem: when the SIGALRM signal interrupts a signal-catching
function installed by the user to catch a different signal, the
\fIlongjmp\fR()
aborts that signal-catching function. An implementation based on
\fIsigprocmask\fR(),
\fIalarm\fR(),
and
\fIsigsuspend\fR()
can avoid these problems.
.P
Despite all reasonable care, there are several very subtle, but
detectable and unavoidable, differences between the two types of
implementations. These are the cases mentioned in this volume of POSIX.1\(hy2017 where
some other activity relating to SIGALRM takes place, and the results
are stated to be unspecified. All of these cases are sufficiently
unusual as not to be of concern to most applications.
.P
See also the discussion of the term
.IR realtime
in
.IR "\fIalarm\fR\^(\|)".
.P
Since
\fIsleep\fR()
can be implemented using
\fIalarm\fR(),
the discussion about alarms occurring early under
\fIalarm\fR()
applies to
\fIsleep\fR()
as well.
.P
Application developers should note that the type of the argument
.IR seconds
and the return value of
\fIsleep\fR()
is
.BR unsigned .
That means that a Strictly Conforming POSIX System Interfaces
Application
cannot pass a value greater than the minimum guaranteed value for
{UINT_MAX},
which the ISO\ C standard sets as 65\|535, and any application passing a larger
value is restricting its portability. A different type was considered,
but historical implementations, including those with a 16-bit
.BR int
type, consistently use either
.BR unsigned
or
.BR int .
.P
Scheduling delays may cause the process to return from the
\fIsleep\fR()
function significantly after the requested time. In such cases, the
return value should be set to zero, since the formula (requested time
minus the time actually spent) yields a negative number and
\fIsleep\fR()
returns an
.BR unsigned .
.SH "FUTURE DIRECTIONS"
A future version of this standard may require that
\fIsleep\fR()
does not make use of SIGALRM in all programs, not just multi-threaded
programs.
.SH "SEE ALSO"
.IR "\fIalarm\fR\^(\|)",
.IR "\fIgetitimer\fR\^(\|)",
.IR "\fInanosleep\fR\^(\|)",
.IR "\fIpause\fR\^(\|)",
.IR "\fIsigaction\fR\^(\|)",
.IR "\fIsigsetjmp\fR\^(\|)"
.P
The Base Definitions volume of POSIX.1\(hy2017,
.IR "\fB<unistd.h>\fP"
.\"
.SH COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form
from IEEE Std 1003.1-2017, Standard for Information Technology
-- Portable Operating System Interface (POSIX), The Open Group Base
Specifications Issue 7, 2018 Edition,
Copyright (C) 2018 by the Institute of
Electrical and Electronics Engineers, Inc and The Open Group.
In the event of any discrepancy between this version and the original IEEE and
The Open Group Standard, the original IEEE and The Open Group Standard
is the referee document. The original Standard can be obtained online at
http://www.opengroup.org/unix/online.html .
.PP
Any typographical or formatting errors that appear
in this page are most likely
to have been introduced during the conversion of the source files to
man page format. To report such errors, see
https://www.kernel.org/doc/man-pages/reporting_bugs.html .