]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - share/man/man9/sleepqueue.9
MFC r274925: misc mdoc fixes.
[FreeBSD/stable/10.git] / share / man / man9 / sleepqueue.9
1 .\" Copyright (c) 2000-2004 John H. Baldwin <jhb@FreeBSD.org>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR
14 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 .\" IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT,
17 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 .\"
24 .\" $FreeBSD$
25 .\"
26 .Dd September 22, 2014
27 .Dt SLEEPQUEUE 9
28 .Os
29 .Sh NAME
30 .Nm init_sleepqueues ,
31 .Nm sleepq_abort ,
32 .Nm sleepq_add ,
33 .Nm sleepq_alloc ,
34 .Nm sleepq_broadcast ,
35 .Nm sleepq_free ,
36 .Nm sleepq_lock ,
37 .Nm sleepq_lookup ,
38 .Nm sleepq_release ,
39 .Nm sleepq_remove ,
40 .Nm sleepq_signal ,
41 .Nm sleepq_set_timeout ,
42 .Nm sleepq_set_timeout_sbt ,
43 .Nm sleepq_sleepcnt ,
44 .Nm sleepq_timedwait ,
45 .Nm sleepq_timedwait_sig ,
46 .Nm sleepq_type ,
47 .Nm sleepq_wait ,
48 .Nm sleepq_wait_sig
49 .Nd manage the queues of sleeping threads
50 .Sh SYNOPSIS
51 .In sys/param.h
52 .In sys/sleepqueue.h
53 .Ft void
54 .Fn init_sleepqueues "void"
55 .Ft int
56 .Fn sleepq_abort "struct thread *td"
57 .Ft void
58 .Fn sleepq_add "void *wchan" "struct lock_object *lock" "const char *wmesg" "int flags" "int queue"
59 .Ft struct sleepqueue *
60 .Fn sleepq_alloc "void"
61 .Ft int
62 .Fn sleepq_broadcast "void *wchan" "int flags" "int pri" "int queue"
63 .Ft void
64 .Fn sleepq_free "struct sleepqueue *sq"
65 .Ft struct sleepqueue *
66 .Fn sleepq_lookup "void *wchan"
67 .Ft void
68 .Fn sleepq_lock "void *wchan"
69 .Ft void
70 .Fn sleepq_release "void *wchan"
71 .Ft void
72 .Fn sleepq_remove "struct thread *td" "void *wchan"
73 .Ft int
74 .Fn sleepq_signal "void *wchan" "int flags" "int pri" "int queue"
75 .Ft void
76 .Fn sleepq_set_timeout "void *wchan" "int timo"
77 .Ft void
78 .Fn sleepq_set_timeout_sbt "void *wchan" "sbintime_t sbt" \
79 "sbintime_t pr" "int flags"
80 .Ft u_int
81 .Fn sleepq_sleepcnt "void *wchan" "int queue"
82 .Ft int
83 .Fn sleepq_timedwait "void *wchan" "int pri"
84 .Ft int
85 .Fn sleepq_timedwait_sig "void *wchan" "int pri"
86 .Ft int
87 .Fn sleepq_type "void *wchan"
88 .Ft void
89 .Fn sleepq_wait "void *wchan" "int pri"
90 .Ft int
91 .Fn sleepq_wait_sig "void *wchan" "int pri"
92 .Sh DESCRIPTION
93 Sleep queues provide a mechanism for suspending execution of a thread until
94 some condition is met.
95 Each queue is associated with a specific wait channel when it is active,
96 and only one queue may be associated with a wait channel at any given point
97 in time.
98 The implementation of each wait channel splits its sleepqueue into 2 sub-queues
99 in order to enable some optimizations on threads' wakeups.
100 An active queue holds a list of threads that are blocked on the associated
101 wait channel.
102 Threads that are not blocked on a wait channel have an associated inactive
103 sleep queue.
104 When a thread blocks on a wait channel it donates its inactive sleep queue
105 to the wait channel.
106 When a thread is resumed,
107 the wait channel that it was blocked on gives it an inactive sleep queue for
108 later use.
109 .Pp
110 The
111 .Fn sleepq_alloc
112 function allocates an inactive sleep queue and is used to assign a
113 sleep queue to a thread during thread creation.
114 The
115 .Fn sleepq_free
116 function frees the resources associated with an inactive sleep queue and is
117 used to free a queue during thread destruction.
118 .Pp
119 Active sleep queues are stored in a hash table hashed on the addresses pointed
120 to by wait channels.
121 Each bucket in the hash table contains a sleep queue chain.
122 A sleep queue chain contains a spin mutex and a list of sleep queues that hash
123 to that specific chain.
124 Active sleep queues are protected by their chain's spin mutex.
125 The
126 .Fn init_sleepqueues
127 function initializes the hash table of sleep queue chains.
128 .Pp
129 The
130 .Fn sleepq_lock
131 function locks the sleep queue chain associated with wait channel
132 .Fa wchan .
133 .Pp
134 The
135 .Fn sleepq_lookup
136 returns a pointer to the currently active sleep queue for that wait
137 channel associated with
138 .Fa wchan
139 or
140 .Dv NULL
141 if there is no active sleep queue associated with
142 argument
143 .Fa wchan .
144 It requires the sleep queue chain associated with
145 .Fa wchan
146 to have been locked by a prior call to
147 .Fn sleepq_lock .
148 .Pp
149 The
150 .Fn sleepq_release
151 function unlocks the sleep queue chain associated with
152 .Fn wchan
153 and is primarily useful when aborting a pending sleep request before one of
154 the wait functions is called.
155 .Pp
156 The
157 .Fn sleepq_add
158 function places the current thread on the sleep queue associated with the
159 wait channel
160 .Fa wchan .
161 The sleep queue chain associated with argument
162 .Fa wchan
163 must be locked by a prior call to
164 .Fn sleepq_lock
165 when this function is called.
166 If a lock is specified via the
167 .Fa lock
168 argument, and if the kernel was compiled with
169 .Cd "options INVARIANTS" ,
170 then the sleep queue code will perform extra checks to ensure that
171 the lock is used by all threads sleeping on
172 .Fa wchan .
173 The
174 .Fa wmesg
175 parameter should be a short description of
176 .Fa wchan .
177 The
178 .Fa flags
179 parameter is a bitmask consisting of the type of sleep queue being slept on
180 and zero or more optional flags.
181 The
182 .Fa queue
183 parameter specifies the sub-queue, in which the contending thread will be
184 inserted.
185 .Pp
186 There are currently three types of sleep queues:
187 .Pp
188 .Bl -tag -width ".Dv SLEEPQ_CONDVAR" -compact
189 .It Dv SLEEPQ_CONDVAR
190 A sleep queue used to implement condition variables.
191 .It Dv SLEEPQ_SLEEP
192 A sleep queue used to implement
193 .Xr sleep 9 ,
194 .Xr wakeup 9
195 and
196 .Xr wakeup_one 9 .
197 .It Dv SLEEPQ_PAUSE
198 A sleep queue used to implement
199 .Xr pause 9 .
200 .El
201 .Pp
202 There are currently two optional flag:
203 .Pp
204 .Bl -tag -width ".Dv SLEEPQ_INTERRUPTIBLE" -compact
205 .It Dv SLEEPQ_INTERRUPTIBLE
206 The current thread is entering an interruptible sleep.
207 .El
208 .Bl -tag -width ".Dv SLEEPQ_STOP_ON_BDRY" -compact
209 .It Dv SLEEPQ_STOP_ON_BDRY
210 When thread is entering an interruptible sleep, do not stop it upon
211 arrival of stop action, like
212 .Dv SIGSTOP .
213 Wake it up instead.
214 .El
215 .Pp
216 A timeout on the sleep may be specified by calling
217 .Fn sleepq_set_timeout
218 after
219 .Fn sleepq_add .
220 The
221 .Fa wchan
222 parameter should be the same value from the preceding call to
223 .Fn sleepq_add ,
224 and the sleep queue chain associated with
225 .Fa wchan
226 must have been locked by a prior call to
227 .Fn sleepq_lock .
228 The
229 .Fa timo
230 parameter should specify the timeout value in ticks.
231 .Pp
232 .Fn sleepq_set_timeout_sbt
233 function takes
234 .Fa sbt
235 argument instead of
236 .Fa timo .
237 It allows to specify relative or absolute wakeup time with higher resolution
238 in form of
239 .Vt sbintime_t .
240 The parameter
241 .Fa pr
242 allows to specify wanted absolute event precision.
243 The parameter
244 .Fa flags
245 allows to pass additional
246 .Fn callout_reset_sbt
247 flags.
248 .Pp
249 Once the thread is ready to suspend,
250 one of the wait functions is called to put the current thread to sleep
251 until it is awakened and to context switch to another thread.
252 The
253 .Fn sleepq_wait
254 function is used for non-interruptible sleeps that do not have a timeout.
255 The
256 .Fn sleepq_timedwait
257 function is used for non-interruptible sleeps that have had a timeout set via
258 .Fn sleepq_set_timeout .
259 The
260 .Fn sleepq_wait_sig
261 function is used for interruptible sleeps that do not have a timeout.
262 The
263 .Fn sleepq_timedwait_sig
264 function is used for interruptible sleeps that do have a timeout set.
265 The
266 .Fa wchan
267 argument to all of the wait functions is the wait channel being slept
268 on.
269 The sleep queue chain associated with argument
270 .Fa wchan
271 needs to have been locked with a prior call to
272 .Fn sleepq_lock .
273 The
274 .Fa pri
275 argument is used to set the priority of the thread when it is awakened.
276 If it is set to zero, the thread's priority is left alone.
277 .Pp
278 When the thread is resumed,
279 the wait functions return a non-zero value if the thread was awakened due to
280 an interrupt other than a signal or a timeout.
281 If the sleep timed out, then
282 .Er EWOULDBLOCK
283 is returned.
284 If the sleep was interrupted by something other than a signal,
285 then some other return value will be returned.
286 .Pp
287 A sleeping thread is normally resumed by the
288 .Fn sleepq_broadcast
289 and
290 .Fn sleepq_signal
291 functions.
292 The
293 .Fn sleepq_signal
294 function awakens the highest priority thread sleeping on a wait channel while
295 .Fn sleepq_broadcast
296 awakens all of the threads sleeping on a wait channel.
297 The
298 .Fa wchan
299 argument specifics which wait channel to awaken.
300 The
301 .Fa flags
302 argument must match the sleep queue type contained in the
303 .Fa flags
304 argument passed to
305 .Fn sleepq_add
306 by the threads sleeping on the wait channel.
307 If the
308 .Fa pri
309 argument does not equal \-1,
310 then each thread that is awakened will have its priority raised to
311 .Fa pri
312 if it has a lower priority.
313 The sleep queue chain associated with argument
314 .Fa wchan
315 must be locked by a prior call to
316 .Fn sleepq_lock
317 before calling any of these functions.
318 The
319 .Fa queue
320 argument specifies the sub-queue, from which threads need to be woken up.
321 .Pp
322 A thread in an interruptible sleep can be interrupted by another thread via
323 the
324 .Fn sleepq_abort
325 function.
326 The
327 .Fa td
328 argument specifies the thread to interrupt.
329 An individual thread can also be awakened from sleeping on a specific wait
330 channel via the
331 .Fn sleepq_remove
332 function.
333 The
334 .Fa td
335 argument specifies the thread to awaken and the
336 .Fa wchan
337 argument specifies the wait channel to awaken it from.
338 If the thread
339 .Fa td
340 is not blocked on the wait channel
341 .Fa wchan
342 then this function will not do anything,
343 even if the thread is asleep on a different wait channel.
344 This function should only be used if one of the other functions above is not
345 sufficient.
346 One possible use is waking up a specific thread from a widely shared sleep
347 channel.
348 .Pp
349 The
350 .Fn sleepq_sleepcnt
351 function offer a simple way to retrieve the number of threads sleeping for
352 the specified
353 .Fa queue ,
354 given a
355 .Fa wchan .
356 .Pp
357 The
358 .Fn sleepq_type
359 function returns the type of
360 .Fa wchan
361 associated to a sleepqueue.
362 .Pp
363 The
364 .Fn sleepq_abort ,
365 .Fn sleepq_broadcast ,
366 and
367 .Fn sleepq_signal
368 functions all return a boolean value.
369 If the return value is true,
370 then at least one thread was resumed that is currently swapped out.
371 The caller is responsible for awakening the scheduler process so that the
372 resumed thread will be swapped back in.
373 This is done by calling the
374 .Fn kick_proc0
375 function after releasing the sleep queue chain lock via a call to
376 .Fn sleepq_release .
377 .Pp
378 The sleep queue interface is currently used to implement the
379 .Xr sleep 9
380 and
381 .Xr condvar 9
382 interfaces.
383 Almost all other code in the kernel should use one of those interfaces rather
384 than manipulating sleep queues directly.
385 .Sh SEE ALSO
386 .Xr condvar 9 ,
387 .Xr runqueue 9 ,
388 .Xr scheduler 9 ,
389 .Xr sleep 9 ,
390 .Xr timeout 9