]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man9/rwlock.9
This commit was generated by cvs2svn to compensate for changes in r165254,
[FreeBSD/FreeBSD.git] / share / man / man9 / rwlock.9
1 .\" Copyright (c) 2006 Gleb Smirnoff <glebius@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 AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd April 19, 2006
28 .Dt RWLOCK 9
29 .Os
30 .Sh NAME
31 .Nm rwlock ,
32 .Nm rw_init ,
33 .Nm rw_rlock ,
34 .Nm rw_wlock ,
35 .Nm rw_assert ,
36 .Nm rw_runlock ,
37 .Nm rw_wunlock ,
38 .Nm rw_initialized ,
39 .Nm rw_destroy ,
40 .Nm RW_SYSINIT
41 .Nd kernel reader/writer lock
42 .Sh SYNOPSIS
43 .In sys/param.h
44 .In sys/lock.h
45 .In sys/rwlock.h
46 .Ft void
47 .Fn rw_init "struct rwlock *rw" "const char *name"
48 .Ft void
49 .Fn rw_rlock "struct rwlock *rw"
50 .Ft void
51 .Fn rw_wlock "struct rwlock *rw"
52 .Ft void
53 .Fn rw_runlock "struct rwlock *rw"
54 .Ft void
55 .Fn rw_wunlock "struct rwlock *rw"
56 .Ft int
57 .Fn rw_try_upgrade "struct rwlock *rw"
58 .Ft void
59 .Fn rw_downgrade "struct rwlock *rw"
60 .Ft int
61 .Fn rw_initialized "struct rwlock *rw"
62 .Ft void
63 .Fn rw_destroy "struct rwlock *rw"
64 .Pp
65 .Cd "options INVARIANTS"
66 .Cd "options INVARIANT_SUPPORT"
67 .Ft void
68 .Fn rw_assert "struct rwlock *rw" "int what"
69 .In sys/kernel.h
70 .Fn RW_SYSINIT "name" "struct rwlock *rw" "const char *desc"
71 .Sh DESCRIPTION
72 Reader/writer locks allow shared access to protected data by multiple threads,
73 or exclusive access by a single thread.
74 The threads with shared access are known as
75 .Em readers
76 since they only read the protected data.
77 A thread with exclusive access is known as a
78 .Em writer
79 since it can modify protected data.
80 .Pp
81 Although reader/writer locks look very similar to
82 .Xr sx 9
83 locks, their usage pattern is different.
84 Reader/writer locks can be treated as mutexes (see
85 .Xr mutex 9 )
86 with shared/exclusive semantics.
87 Unlike
88 .Xr sx 9 ,
89 an
90 .Nm
91 can be locked while holding a non-spin mutex, and an
92 .Nm
93 cannot be held while sleeping.
94 The
95 .Nm
96 locks have priority propagation like mutexes, but priority
97 can be propagated only to an exclusive holder.
98 This limitation comes from the fact that shared owners
99 are anonymous.
100 Another important property is that shared holders of
101 .Nm
102 can recurse,
103 but exclusive locks are not allowed to recurse.
104 .Ss Macros and Functions
105 .Bl -tag -width indent
106 .It Fn rw_init "struct rwlock *rw" "const char *name"
107 Initialize structure located at
108 .Fa rw
109 as reader/writer lock, described by name
110 .Fa name .
111 The description is used solely for debugging purposes.
112 This function must be called before any other operations
113 on the lock.
114 .It Fn rw_rlock "struct rwlock *rw"
115 Lock
116 .Fa rw
117 as a reader.
118 If any thread holds this lock exclusively, the current thread blocks,
119 and its priority is propagated to the exclusive holder.
120 The
121 .Fn rw_rlock
122 function can be called when the thread has already acquired reader
123 access on
124 .Fa rw .
125 This is called
126 .Dq "recursing on a lock" .
127 .It Fn rw_wlock "struct rwlock *rw"
128 Lock
129 .Fa rw
130 as a writer.
131 If there are any shared owners of the lock, the current thread blocks.
132 The
133 .Fn rw_wlock
134 function cannot be called recursively.
135 .It Fn rw_runlock "struct rwlock *rw"
136 This function releases a shared lock previously acquired by
137 .Fn rw_rlock .
138 .It Fn rw_wunlock "struct rwlock *rw"
139 This function releases an exclusive lock previously acquired by
140 .Fn rw_wlock .
141 .It Fn rw_try_upgrade "struct rwlock *rw"
142 Attempt to upgrade a single shared lock to an exclusive lock.
143 The current thread must hold a shared lock of
144 .Fa rw .
145 This will only succeed if the current thread holds the only shared lock on
146 .Fa rw ,
147 and it only holds a single shared lock.
148 If the attempt succeeds
149 .Fn rw_try_upgrade
150 will return a non-zero value,
151 and the current thread will hold an exclusive lock.
152 If the attempt fails
153 .Fn rw_try_upgrade
154 will return zero,
155 and the current thread will still hold a shared lock.
156 .It Fn rw_downgrade "struct rwlock *rw"
157 Convert an exclusive lock into a single shared lock.
158 The current thread must hold an exclusive lock of
159 .Fa rw .
160 .It Fn rw_initialized "struct rwlock *rw"
161 This function returns non-zero if
162 .Fa rw
163 has been initialized, and zero otherwise.
164 .It Fn rw_destroy "struct rwlock *rw"
165 This functions destroys a lock previously initialized with
166 .Fn rw_init .
167 The
168 .Fa rw
169 lock must be unlocked.
170 .It Fn rw_assert "struct rwlock *rw" "int what"
171 This function allows assertions specified in
172 .Fa what
173 to be made about
174 .Fa rw .
175 If the assertions are not true and the kernel is compiled
176 with
177 .Cd "options INVARIANTS"
178 and
179 .Cd "options INVARIANT_SUPPORT" ,
180 the kernel will panic.
181 Currently the following assertions are supported:
182 .Bl -tag -width ".Dv RA_UNLOCKED"
183 .It Dv RA_LOCKED
184 Assert that current thread holds either a shared or exclusive lock
185 of
186 .Fa rw .
187 .It Dv RA_RLOCKED
188 Assert that current thread holds a shared lock of
189 .Fa rw .
190 .It Dv RA_WLOCKED
191 Assert that current thread holds an exclusive lock of
192 .Fa rw .
193 .It Dv RA_UNLOCKED
194 Assert that current thread holds neither a shared nor exclusive lock of
195 .Fa rw .
196 .El
197 .El
198 .Sh SEE ALSO
199 .Xr mutex 9 ,
200 .Xr panic 9 ,
201 .Xr sema 9 ,
202 .Xr sx 9
203 .Sh HISTORY
204 These
205 functions appeared in
206 .Fx 7.0 .
207 .Sh AUTHORS
208 .An -nosplit
209 The
210 .Nm
211 facility was written by
212 .An "John Baldwin" .
213 This manual page was written by
214 .An "Gleb Smirnoff" .
215 .Sh BUGS
216 If
217 .Dv WITNESS
218 is not included in the kernel,
219 then it is impossible to assert that the current thread does or does not
220 hold a shared lock.
221 In the
222 .Pf non- Dv WITNESS
223 case, the
224 .Dv RA_LOCKED
225 and
226 .Dv RA_RLOCKED
227 assertions merely check that some thread holds a shared lock.
228 .Pp
229 Reader/writer is a bit of an awkward name.
230 An
231 .Nm
232 can also be called a
233 .Dq Robert Watson
234 lock if desired.