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 February 27, 2007 29.Os 30.Dt SLEEP 9 31.Sh NAME 32.Nm msleep , 33.Nm msleep_spin , 34.Nm pause , 35.Nm tsleep , 36.Nm wakeup 37.Nd wait for events 38.Sh SYNOPSIS 39.In sys/param.h 40.In sys/systm.h 41.In sys/proc.h 42.Ft int 43.Fn msleep "void *chan" "struct mtx *mtx" "int priority" "const char *wmesg" "int timo" 44.Ft int 45.Fn msleep_spin "void *chan" "struct mtx *mtx" "const char *wmesg" "int timo" 46.Ft void 47.Fn pause "const char *wmesg" "int timo" 48.Ft int 49.Fn tsleep "void *chan" "int priority" "const char *wmesg" "int timo" 50.Ft void 51.Fn wakeup "void *chan" 52.Ft void 53.Fn wakeup_one "void *chan" 54.Sh DESCRIPTION 55The functions 56.Fn tsleep , 57.Fn msleep , 58.Fn msleep_spin , 59.Fn pause , 60.Fn wakeup , 61and 62.Fn wakeup_one 63handle event-based thread blocking. 64If a thread must wait for an 65external event, it is put to sleep by 66.Fn tsleep , 67.Fn msleep , 68.Fn msleep_spin , 69or 70.Fn pause . 71The parameter 72.Fa chan 73is an arbitrary address that uniquely identifies the event on which 74the thread is being put to sleep. 75All threads sleeping on a single 76.Fa chan 77are woken up later by 78.Fn wakeup , 79often called from inside an interrupt routine, to indicate that the 80resource the thread was blocking on is available now. 81.Pp 82The parameter 83.Fa wmesg 84is a string describing the sleep condition for tools like 85.Xr ps 1 . 86Due to the limited space of those programs to display arbitrary strings, 87this message should not be longer than 6 characters. 88.Pp 89The 90.Fn msleep 91function is the general sleep call. 92It suspends the current thread until a wakeup is 93performed on the specified identifier. 94The 95.Fa mtx 96parameter is a mutex which will be released before sleeping and reacquired 97before 98.Fn msleep 99returns. 100If 101.Fa priority 102includes the 103.Dv PDROP 104flag, the 105.Fa mtx 106parameter will not be reacquired before returning. 107The mutex is used to ensure that a condition can be checked atomically, 108and that the current thread can be suspended without missing a 109change to the condition, or an associated wakeup. 110If 111.Fa priority 112is not 0, 113then the thread will be made 114runnable with the specified 115.Fa priority 116when it resumes. 117If 118.Fa timo 119is not 0, 120then the thread will sleep for at most 121.Fa timo No / Va hz 122seconds. 123If the 124.Va Giant 125lock is not held and 126.Fa mtx 127is 128.Dv NULL , 129then 130.Fa timo 131must be non-zero. 132If 133.Fa priority 134includes the 135.Dv PCATCH 136flag, signals are checked before and after sleeping, otherwise signals are 137not checked. 138The 139.Fn msleep 140function returns 0 if awakened, 141.Er EWOULDBLOCK 142if the timeout expires. 143If 144.Dv PCATCH 145is set and a signal needs to be delivered, 146.Er ERESTART 147is returned if the current system call should be restarted if 148possible, and 149.Er EINTR 150is returned if the system call should be interrupted by the signal 151(return 152.Er EINTR ) . 153.Pp 154The 155.Fn tsleep 156function is a variation on 157.Fn msleep . 158It is identical to invoking 159.Fn msleep 160with a 161.Dv NULL 162.Fa mtx 163parameter. 164.Pp 165The 166.Fn msleep_spin 167function is another variation on 168.Fn msleep . 169This function accepts a spin mutex rather than a default mutex for its 170.Fa mtx 171parameter. 172It is also more limited in that it does not accept a 173.Fa priority 174parameter. 175Thus, it will not change the priority of a sleeping thread, 176and it does not support the 177.Dv PDROP 178and 179.Dv PCATCH 180flags. 181.Pp 182The 183.Fn pause 184function is a wrapper around 185.Fn tsleep 186that suspends execution of the current thread for the indicated timeout. 187The thread can not be awakened early by signals or calls to 188.Fn wakeup 189or 190.Fn wakeup_one . 191.Pp 192The 193.Fn wakeup_one 194function makes the first thread in the queue that is sleeping on the 195parameter 196.Fa chan 197runnable. 198This reduces the load when a large number of threads are sleeping on 199the same address, but only one of them can actually do any useful work 200when made runnable. 201.Pp 202Due to the way it works, the 203.Fn wakeup_one 204function requires that only related threads sleep on a specific 205.Fa chan 206address. 207It is the programmer's responsibility to choose a unique 208.Fa chan 209value. 210The older 211.Fn wakeup 212function did not require this, though it was never good practice 213for threads to share a 214.Fa chan 215value. 216When converting from 217.Fn wakeup 218to 219.Fn wakeup_one , 220pay particular attention to ensure that no other threads wait on the 221same 222.Fa chan . 223.Sh RETURN VALUES 224See above. 225.Sh SEE ALSO 226.Xr ps 1 , 227.Xr malloc 9 , 228.Xr mi_switch 9 229.Sh HISTORY 230The functions 231.Fn sleep 232and 233.Fn wakeup 234were present in 235.At v1 . 236They were probably also present in the preceding 237PDP-7 version of 238.Ux . 239They were the basic process synchronization model. 240.Pp 241The 242.Fn tsleep 243function appeared in 244.Bx 4.4 245and added the parameters 246.Fa wmesg 247and 248.Fa timo . 249The 250.Fn sleep 251function was removed in 252.Fx 2.2 . 253The 254.Fn wakeup_one 255function appeared in 256.Fx 2.2 . 257The 258.Fn msleep 259function appeared in 260.Fx 5.0 , 261and the 262.Fn msleep_spin 263function appeared in 264.Fx 6.2 . 265The 266.Fn pause 267function appeared in 268.Fx 7.0 . 269.Sh AUTHORS 270.An -nosplit 271This manual page was written by 272.An J\(:org Wunsch Aq joerg@FreeBSD.org . 273