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 wakeup 36.Nd wait for events 37.Sh SYNOPSIS 38.In sys/param.h 39.In sys/systm.h 40.In sys/proc.h 41.Ft int 42.Fn tsleep "void *ident" "int priority" "const char *wmesg" "int timo" 43.Ft int 44.Fn msleep "void *ident" "struct mtx *mtx" "int priority" "const char *wmesg" "int timo" 45.Ft void 46.Fn wakeup "void *ident" 47.Ft void 48.Fn wakeup_one "void *ident" 49.Sh DESCRIPTION 50The functions 51.Fn tsleep 52and 53.Fn wakeup 54handle event-based process blocking. If a process must wait for an 55external event, it is put on sleep by 56.Nm tsleep . 57The parameter 58.Ar ident 59is an arbitrary address that uniquely identifies the event on which 60the process is being asleep. All processes sleeping on a single 61.Ar ident 62are woken up later by 63.Nm wakeup , 64often called from inside an interrupt routine, to indicate that the 65resource the process was blocking on is available now. 66.Pp 67The parameter 68.Ar wmesg 69is a string describing the sleep condition for tools like 70.Xr ps 1 . 71Due to the limited space of those programs to display arbitrary strings, 72this message should not be longer than 6 characters. 73.Pp 74The 75.Fn wakeup_one 76function is used to make the first process in the queue that is 77sleeping on the parameter 78.Fa ident 79runnable. This can prevent the system from becoming saturated 80when a large number of processes are sleeping on the same address, 81but only one of them can actually do any useful work when made 82runnable. 83.Pp 84.Nm Tsleep 85is the general sleep call. Suspends the current process until a wakeup is 86performed on the specified identifier. The process will then be made 87runnable with the specified 88.Ar priority . 89Sleeps at most 90.Ar timo 91\&/ hz seconds (0 means no timeout). If 92.Ar pri 93includes the 94.Dv PCATCH 95flag, signals are checked before and after sleeping, else signals are 96not checked. Returns 0 if awakened, 97.Er EWOULDBLOCK 98if the timeout expires. If 99.Dv PCATCH 100is set and a signal needs to be delivered, 101.Er ERESTART 102is returned if the current system call should be restarted if 103possible, and 104.Er EINTR 105is returned if the system call should be interrupted by the signal 106(return 107.Er EINTR ) . 108.Pp 109.Nm Msleep 110is a variation on tsleep. The parameter 111.Ar mtx 112is a mutex, which will be exited before sleeping, and entered before 113.Nm msleep 114returns. If 115.Ar pri 116includes the 117.Dv PDROP 118flag, the 119.Ar mtx 120parameter will not be entered before returning. The mutex is 121used to ensure that a condition can be checked atomically, and 122that the current process can be suspended without missing a 123change to the condition, or an associated wakeup. 124.Sh RETURN VALUES 125See above. 126.Sh SEE ALSO 127.Xr ps 1 , 128.Xr malloc 9 , 129.Xr mi_switch 9 130.Sh HISTORY 131The sleep/wakeup process synchronization mechanism is very old. It 132appeared in a very early version of Unix. 133.Pp 134.Nm Tsleep 135appeared in 136.Bx 4.4 . 137.Pp 138.Nm Sleep 139used to be the traditional form. It doesn't let you specify a timeout or a 140.Ar wmesg , 141hence it has been discontinued. 142.Sh AUTHORS 143.An -nosplit 144This man page was written by 145.An J\(:org Wunsch . 146