Sync usage with man page.
[netbsd-mini2440.git] / share / man / man9 / rwlock.9
blob026f9086fffdd3e8903ae3bacc5b36a54cc0ab42
1 .\"     $NetBSD: rwlock.9,v 1.13 2009/03/23 22:22:40 wiz Exp $
2 .\"
3 .\" Copyright (c) 2006, 2007, 2009 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Andrew Doran.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .Dd November 22, 2009
31 .Dt RWLOCK 9
32 .Os
33 .Sh NAME
34 .Nm rw ,
35 .Nm rw_init ,
36 .Nm rw_destroy ,
37 .Nm rw_enter ,
38 .Nm rw_exit ,
39 .Nm rw_tryenter ,
40 .Nm rw_tryupgrade ,
41 .Nm rw_downgrade ,
42 .Nm rw_read_held ,
43 .Nm rw_write_held ,
44 .Nm rw_lock_held
45 .Nd reader / writer lock primitives
46 .Sh SYNOPSIS
47 .In sys/rwlock.h
48 .Ft void
49 .Fn rw_init "krwlock_t *rw"
50 .Ft void
51 .Fn rw_destroy "krwlock_t *rw"
52 .Ft void
53 .Fn rw_enter "krwlock_t *rw" "const krw_t op"
54 .Ft void
55 .Fn rw_exit "krwlock_t *rw"
56 .Ft int
57 .Fn rw_tryenter "krwlock_t *rw" "const krw_t op"
58 .Ft int
59 .Fn rw_tryupgrade "krwlock_t *rw"
60 .Ft void
61 .Fn rw_downgrade "krwlock_t *rw"
62 .Ft int
63 .Fn rw_read_held "krwlock_t *rw"
64 .Ft int
65 .Fn rw_write_held "krwlock_t *rw"
66 .Ft int
67 .Fn rw_lock_held "krwlock_t *rw"
68 .Pp
69 .Cd "options DIAGNOSTIC"
70 .Cd "options LOCKDEBUG"
71 .Sh DESCRIPTION
72 Reader / writer locks (RW locks) are used in the kernel to synchronize access
73 to an object among LWPs (lightweight processes) and soft interrupt handlers.
74 .Pp
75 In addition to the capabilities provided by mutexes, RW locks distinguish
76 between read (shared) and write (exclusive) access.
77 .Pp
78 RW locks are in one of three distinct states at any given time:
79 .Bl -tag -width cdosrunrundo
80 .It Dv Unlocked
81 The lock is not held.
82 .It Dv Read locked
83 The lock holders intend to read the protected object.
84 Multiple callers may hold a RW lock with
85 .Dq read intent
86 simultaneously.
87 .It Dv Write locked
88 The lock holder intends to update the protected object.
89 Only one caller may hold a RW lock with
90 .Dq write intent .
91 .El
92 .Pp
93 The
94 .Vt krwlock_t
95 type provides storage for the RW lock object.
96 This should be treated as an opaque object and not examined directly by
97 consumers.
98 .Pp
99 Note that these interfaces must not be used from a hardware
100 interrupt handler.
101 .Sh OPTIONS AND MACROS
102 .Bl -tag -width abcd
103 .It Cd "options DIANOSTIC"
105 Kernels compiled with the
106 .Dv DIAGNOSTIC
107 option perform basic sanity checks on RW lock operations.
108 .It Cd "options LOCKDEBUG"
110 Kernels compiled with the
111 .Dv LOCKDEBUG
112 option perform potentially CPU intensive sanity checks
113 on RW lock operations.
115 .Sh FUNCTIONS
116 .Bl -tag -width abcd
117 .It Fn rw_init "rw"
119 Initialize a lock for use.
120 No other operations can be performed on the lock until it has been
121 initialized.
122 .It Fn rw_destroy "rw"
124 Release resources used by a lock.
125 The lock may not be used after it has been destroyed.
126 .It Fn rw_enter "rw" "op"
129 .Dv RW_READER
130 is specified as the argument to
131 .Fa op ,
132 acquire a read lock.
133 If the lock is write held, the caller will block and not return until the
134 hold is acquired.
135 Callers must not recursively acquire read locks.
138 .Dv RW_WRITER
139 is specified, acquire a write lock.
140 If the lock is already held, the caller will block and not return until the
141 hold is acquired.
143 RW locks and other types of locks must always be acquired in a
144 consistent order with respect to each other.
145 Otherwise, the potential for system deadlock exists.
146 .It Fn rw_exit "rw"
148 Release a lock.
149 The lock must have been previously acquired by the caller.
150 .It Fn rw_tryenter "rw" "op"
152 Try to acquire a lock, but do not block if the lock is already held.
153 If the lock is acquired successfully, return non-zero.
154 Otherwise, return zero.
156 Valid arguments to
157 .Fa op
159 .Dv RW_READER
161 .Dv RW_WRITER .
162 .It Fn rw_tryupgrade "rw"
164 Try to upgrade a lock from one read hold to a write hold.
165 If the lock is upgraded successfully, returns non-zero.
166 Otherwise, returns zero.
167 .It Fn rw_downgrade "rw"
169 Downgrade a lock from a write hold to a read hold.
170 .It Fn rw_write_held "rw"
171 .It Fn rw_read_held "rw"
172 .It Fn rw_lock_held "rw"
174 Test the lock's condition and return non-zero if the lock is held
175 (potentially by the current LWP) and matches the specified condition.
176 Otherwise, return zero.
178 These functions must never be used to make locking decisions at run time:
179 they are provided only for diagnostic purposes.
181 .Sh PERFORMANCE CONSIDERATIONS
182 RW locks are subject to high cache contention on multiprocessor systems,
183 and scale poorly when the write:read ratio is not strongly in favour of
184 readers.
185 Ideally, RW locks should only be used in settings when the following three
186 conditions are met:
187 .Bl -bullet
189 The data object(s) protected by the RW lock are read much more frequently
190 than written.
192 The read-side hold time for the RW lock is long (in the order of thousands
193 of processor clock cycles).
195 Strong synchronization semantics are required: there is no scope for
196 lockless, lazy or optimistic synchronization.
199 Generally speaking, it is better to organise code paths and/or
200 data flows such that fewer and weaker synchronization points are required
201 to ensure correct operation.
202 .Sh CODE REFERENCES
203 This section describes places within the
205 source tree where code implementing RW locks can be found.
206 All pathnames are relative to
207 .Pa /usr/src .
209 The core of the RW lock implementation is in
210 .Pa sys/kern/kern_rwlock.c .
212 The header file
213 .Pa sys/sys/rwlock.h
214 describes the public interface, and interfaces that machine-dependent
215 code must provide to support RW locks.
216 .Sh SEE ALSO
217 .Xr lockstat 8 ,
218 .Xr condvar 9 ,
219 .Xr mb 9 ,
220 .Xr mutex 9
222 .%A Jim Mauro
223 .%A Richard McDougall
224 .%T Solaris Internals: Core Kernel Architecture
225 .%I Prentice Hall
226 .%D 2001
227 .%O ISBN 0-13-022496-0
229 .Sh HISTORY
230 The RW lock primitives first appeared in
231 .Nx 5.0 .