Fix mdoc(7)/man(7) mix up.
[netbsd-mini2440.git] / lib / libpthread / pthread_cond_wait.3
blob2b3cdd32ed8367529f033928efcb27e788a6705d
1 .\" $NetBSD: pthread_cond_wait.3,v 1.12 2009/01/11 02:46:48 christos Exp $
2 .\"
3 .\" Copyright (c) 2002, 2008 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
14 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
15 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
17 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 .\" POSSIBILITY OF SUCH DAMAGE.
24 .\"
25 .\" Copyright (c) 1997 Brian Cully <shmit@kublai.com>
26 .\" All rights reserved.
27 .\"
28 .\" Redistribution and use in source and binary forms, with or without
29 .\" modification, are permitted provided that the following conditions
30 .\" are met:
31 .\" 1. Redistributions of source code must retain the above copyright
32 .\"    notice, this list of conditions and the following disclaimer.
33 .\" 2. Redistributions in binary form must reproduce the above copyright
34 .\"    notice, this list of conditions and the following disclaimer in the
35 .\"    documentation and/or other materials provided with the distribution.
36 .\" 3. Neither the name of the author nor the names of any co-contributors
37 .\"    may be used to endorse or promote products derived from this software
38 .\"    without specific prior written permission.
39 .\"
40 .\" THIS SOFTWARE IS PROVIDED BY JOHN BIRRELL AND CONTRIBUTORS ``AS IS'' AND
41 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
44 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 .\" SUCH DAMAGE.
51 .\"
52 .\" $FreeBSD: src/lib/libpthread/man/pthread_cond_wait.3,v 1.16 2002/09/16 19:29:28 mini Exp $
53 .\"
54 .Dd December 31, 2008
55 .Dt PTHREAD_COND_WAIT 3
56 .Os
57 .Sh NAME
58 .Nm pthread_cond_wait ,
59 .Nm pthread_cond_timedwait
60 .Nd wait on a condition variable
61 .Sh LIBRARY
62 .Lb libpthread
63 .Sh SYNOPSIS
64 .In pthread.h
65 .Ft int
66 .Fn pthread_cond_wait "pthread_cond_t * restrict cond" "pthread_mutex_t * restrict mutex"
67 .Ft int
68 .Fn pthread_cond_timedwait "pthread_cond_t * restrict cond" "pthread_mutex_t * restrict mutex" "const struct timespec * restrict abstime"
69 .Sh DESCRIPTION
70 The
71 .Fn pthread_cond_wait
72 function atomically blocks the current thread waiting on the condition
73 variable specified by
74 .Fa cond ,
75 and unlocks the mutex specified by
76 .Fa mutex .
77 The waiting thread unblocks after another thread calls
78 .Xr pthread_cond_signal 3 ,
80 .Xr pthread_cond_broadcast 3
81 with the same condition variable.
82 The current thread holds the lock on
83 .Fa mutex
84 upon return from the
85 .Fa pthread_cond_wait
86 call.
87 .Pp
88 The
89 .Fn pthread_cond_timedwait
90 function atomically blocks the current thread waiting on the condition
91 variable specified by
92 .Fa cond ,
93 and unlocks the mutex specified by
94 .Fa mutex .
95 The waiting thread unblocks after another thread calls
96 .Xr pthread_cond_signal 3 ,
98 .Xr pthread_cond_broadcast 3
99 with the same condition variable, or if the system time reaches the
100 time specified in
101 .Fa abstime .
103 Note that a call to
104 .Fn pthread_cond_wait
106 .Fn pthread_cond_timedwait
107 may wake up spontaneously, without a call to
108 .Xr pthread_cond_signal 3
110 .Xr pthread_cond_broadcast 3 .
111 The caller should prepare for this by invoking
112 .Fn pthread_cond_wait
114 .Fn pthread_cond_timedwait
115 within a predicate loop that tests whether the thread should proceed.
117 When calling
118 .Fn pthread_cond_wait
120 .Fn pthread_cond_timedwait ,
121 a temporary binding is established between the condition variable
122 .Fa cond
123 and the mutex
124 .Fa mutex .
126 The same mutex must be held while calling
127 .Fn pthread_cond_broadcast
129 .Fn pthread_cond_signal
131 .Fa cond .
132 Additionally, the same mutex must be used for concurrent calls to
133 .Fn pthread_cond_wait
135 .Fn pthread_cond_timedwait .
136 Only when a condition variable is known to be quiescent may an application
137 change the mutex associated with it.
138 In this implementation, none of the functions enforce this requirement, but
139 if the mutex is not held or independent mutexes are used the resulting
140 behaviour is undefined.
141 .Sh RETURN VALUES
142 If successful, the
143 .Fn pthread_cond_wait
145 .Fn pthread_cond_timedwait
146 functions will return zero.
147 Otherwise an error number will be returned to
148 indicate the error.
149 .Sh ERRORS
150 .Fn pthread_cond_wait
151 may fail if:
152 .Bl -tag -width Er
153 .It Bq Er EINVAL
154 The value specified by
155 .Fa cond
156 or the value specified by
157 .Fa mutex
158 is invalid.
161 .Fn pthread_cond_timedwait
162 shall fail if:
163 .Bl -tag -width Er
164 .It Bq Er ETIMEDOUT
165 The system time has reached or exceeded the time specified in
166 .Fa abstime .
169 .Fn pthread_cond_timedwait
170 may fail if:
171 .Bl -tag -width Er
172 .It Bq Er EINVAL
173 The value specified by
174 .Fa cond ,
175 .Fa mutex ,
177 .Fa abstime
178 is invalid.
181 .Fn pthread_cond_wait
183 .Fn pthread_cond_timedwait
184 may fail if:
185 .Bl -tag -width Er
186 .It Bq Er EPERM
187 The value specified by
188 .Fa mutex
189 is not locked in condition wait.
191 .Sh SEE ALSO
192 .Xr pthread_cond_broadcast 3 ,
193 .Xr pthread_cond_destroy 3 ,
194 .Xr pthread_cond_init 3 ,
195 .Xr pthread_cond_signal 3
196 .Sh STANDARDS
197 .Fn pthread_cond_wait
199 .Fn pthread_cond_timedwait
200 conform to
201 .St -p1003.1-96 .