xref: /freebsd/share/man/man9/sleep.9 (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1.\"
2.\" Copyright (c) 1996 Joerg Wunsch
3.\"
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\"
15.\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
16.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18.\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
19.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25.\"
26.\" $FreeBSD$
27.\" "
28.Dd December 17, 1998
29.Os
30.Dt SLEEP 9
31.Sh NAME
32.Nm sleep ,
33.Nm msleep ,
34.Nm tsleep ,
35.Nm asleep ,
36.Nm await ,
37.Nm wakeup
38.Nd wait for events
39.Sh SYNOPSIS
40.Fd #include <sys/param.h>
41.Fd #include <sys/systm.h>
42.Fd #include <sys/proc.h>
43.Ft int
44.Fn tsleep "void *ident" "int priority" "const char *wmesg" "int timo"
45.Ft int
46.Fn msleep "void *ident" "struct mtx *mtx" "int priority" "const char *wmesg" "int timo"
47.Ft int
48.Fn asleep "void *ident" "int priority" "const char *wmesg" "int timo"
49.Ft int
50.Fn await "int priority" "int timo"
51.Ft void
52.Fn wakeup "void *ident"
53.Ft void
54.Fn wakeup_one "void *ident"
55.Sh DESCRIPTION
56The functions
57.Fn tsleep
58and
59.Fn wakeup
60handle event-based process blocking.  If a process must wait for an
61external event, it is put on sleep by
62.Nm tsleep .
63The parameter
64.Ar ident
65is an arbitrary address that uniquely identifies the event on which
66the process is being asleep.  All processes sleeping on a single
67.Ar ident
68are woken up later by
69.Nm wakeup ,
70often called from inside an interrupt routine, to indicate that the
71resource the process was blocking on is available now.
72.Pp
73The parameter
74.Ar wmesg
75is a string describing the sleep condition for tools like
76.Xr ps 1 .
77Due to the limited space of those programs to display arbitrary strings,
78this message should not be longer than 6 characters.
79.Pp
80The
81.Fn wakeup_one
82function is used to make the first process in the queue that is
83sleeping on the parameter
84.Fa ident
85runnable.  This can prevent the system from becoming saturated
86when a large number of processes are sleeping on the same address,
87but only one of them can actually do any useful work when made
88runnable.
89.Pp
90.Nm Tsleep
91is the general sleep call.  Suspends the current process until a wakeup is
92performed on the specified identifier.  The process will then be made
93runnable with the specified
94.Ar priority .
95Sleeps at most
96.Ar timo
97\&/ hz seconds (0 means no timeout).  If
98.Ar pri
99includes the
100.Dv PCATCH
101flag, signals are checked before and after sleeping, else signals are
102not checked.  Returns 0 if awakened,
103.Er EWOULDBLOCK
104if the timeout expires.  If
105.Dv PCATCH
106is set and a signal needs to be delivered,
107.Er ERESTART
108is returned if the current system call should be restarted if
109possible, and
110.Er EINTR
111is returned if the system call should be interrupted by the signal
112.Pq return Er EINTR .
113.Pp
114.Nm Msleep
115is a variation on tsleep.  The parameter
116.Ar mtx
117is a mutex, which will be exited before sleeping, and entered before
118.Nm msleep
119returns.  If
120.Ar pri
121includes the
122.Dv PDROP
123flag, the
124.Ar mtx
125parameter will not be entered before returning.  The mutex is
126used to ensure that a condition can be checked atomicly, and
127that the current process can be suspended without missing a
128change to the condition, or an associated wakeup.
129.Pp
130.Nm Asleep
131implements the new asynchronous sleep function.  It takes the same arguments
132as
133.Fn tsleep
134and places the process on the appropriate wait queue, but
135.Fn asleep
136leaves the process runnable and returns immediately.  The caller is then
137expected to, at some point in the future, call
138.Fn await
139to actually wait for the previously queued wait condition.
140If
141.Fn asleep
142is called several times, only the most recent call is effective.
143.Fn asleep
144may be called with an
145.Ar ident
146value of NULL
147to remove any previously queued condition.
148.Pp
149.Nm Await
150implements the new asynchronous wait function.  When
151.Fn asleep
152is called on an identifier it associates the process with that
153identifier but does not block.
154.Fn await
155will actually block the process until
156.Fn wakeup
157is called on that identifier any time after the
158.Fn asleep .
159If
160.Fn wakeup
161is called after you
162.Fn asleep
163but before you
164.Fn await
165then the
166.Fn await
167call is effectively a NOP.
168If
169.Fn await
170is called multiple times without an intervening
171.Fn asleep ,
172the
173.Fn await
174is effectively a NOP but will also call
175.Fn mi_switch
176for safety.  The
177.Fn await
178function allows you to override the priority and timeout values to be used.
179If the value -1 is specified for an argument, the value is taken from the
180previous
181.Fn asleep
182call.  If -1 is passed for the priority you must be prepared to catch signal
183conditions if the prior call to
184.Fn asleep
185specified it in its priority.  If -1 is passed for the timeout you must be
186prepared to catch a timeout condition if the prior call to
187.Fn asleep
188specified a timeout.  When you use -1, it is usually a good idea to not make
189assumptions as to the arguments used by the prior
190.Fn asleep
191call.
192.Pp
193The
194.Fn asleep
195and
196.Fn await
197functions are mainly used by the kernel to shift the burden of blocking
198away from extremely low level routines and to push it onto their callers.
199This in turn allows more complex interlocking code to
200.Em backout
201of a temporary resource failure
202(such as lack of memory) in order to release major locks prior to actually
203blocking, and to then retry the operation on wakeup.  This key feature is
204expected to be heavily used in SMP situations in order to allow code to make
205better use of spinlocks.  A spinlock, by its very nature, cannot be used
206around code that might block.  It is hoped that these capabilities will
207make it easier to migrate the SMP master locks deeper into the kernel.
208.Pp
209These routines may also be used to avoid nasty spl*() calls to get around
210race conditions with simple conditional test/wait interlocks.  You simply
211call
212.Fn asleep
213prior to your test, then conditionally
214.Fn await
215only if the test fails.  It is usually a good idea to cancel an
216.Fn asleep
217if you wind up never calling the related
218.Fn await ,
219but it is not required.  If you do not want to waste cpu calling
220.Fn asleep
221unnecessarily, you can surround the whole thing with a second test.  The
222race condition is still handled by the inside
223.Fn asleep
224call.
225.Sh RETURN VALUES
226See above.
227.Sh SEE ALSO
228.Xr ps 1 ,
229.Xr malloc 9 ,
230.Xr mi_switch 9
231.Sh HISTORY
232The sleep/wakeup process synchronization mechanism is very old.  It
233appeared in a very early version of Unix.
234.Pp
235.Nm Tsleep
236appeared in
237.Bx 4.4 .
238.Pp
239.Nm Asleep Ns / Ns Nm await
240first appeared in
241.Fx 3.0
242and is designed to shift the burden of blocking
243away from extremely low level routines and push it up to their callers.
244.Pp
245.Nm Sleep
246used to be the traditional form.  It doesn't let you specify a timeout or a
247.Ar wmesg ,
248hence it has been discontinued.
249.Sh AUTHORS
250.An -nosplit
251This man page was written by
252.An J\(:org Wunsch .
253.Nm Asleep
254and
255.Nm await
256were designed and written by
257.An Matthew Dillon .
258