summaryrefslogtreecommitdiff
path: root/usr/src/man/man3c/rwlock.3c
blob: ee9eecf226910fe13008f9779e333b17ceb24644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
'\" te
.\"  Copyright (c) 1998 Sun Microsystems, Inc.  All Rights Reserved
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
.TH RWLOCK 3C "Dec 19, 2013"
.SH NAME
rwlock, rwlock_init, rwlock_destroy, rw_rdlock, rw_wrlock, rw_tryrdlock,
rw_trywrlock, rw_unlock \- multiple readers, single writer locks
.SH SYNOPSIS
.LP
.nf
cc -mt [ \fIflag\fR... ] \fIfile\fR...[ \fIlibrary\fR... ]

#include <synch.h>

\fBint\fR \fBrwlock_init\fR(\fBrwlock_t *\fR\fIrwlp\fR, \fBint\fR \fItype\fR, \fBvoid *\fR\fIarg\fR);
.fi

.LP
.nf
\fBint\fR \fBrwlock_destroy\fR(\fBrwlock_t *\fR\fIrwlp\fR);
.fi

.LP
.nf
\fBint\fR \fBrw_rdlock\fR(\fBrwlock_t *\fR\fIrwlp\fR);
.fi

.LP
.nf
\fBint\fR \fBrw_wrlock\fR(\fBrwlock_t *\fR\fIrwlp\fR);
.fi

.LP
.nf
\fBint\fR \fBrw_unlock\fR(\fBrwlock_t *\fR\fIrwlp\fR);
.fi

.LP
.nf
\fBint\fR \fBrw_tryrdlock\fR(\fBrwlock_t *\fR\fIrwlp\fR);
.fi

.LP
.nf
\fBint\fR \fBrw_trywrlock\fR(\fBrwlock_t *\fR\fIrwlp\fR);
.fi

.SH DESCRIPTION
.sp
.LP
Many threads can have simultaneous read-only access to data, while only one
thread can have write access at any given time. Multiple read access with
single write access is controlled by locks, which are generally used to protect
data that is frequently searched.
.sp
.LP
Readers/writer locks can synchronize threads in this process and other
processes if they are allocated in writable memory  and shared among
cooperating processes (see \fBmmap\fR(2)), and are initialized for this
purpose.
.sp
.LP
Additionally, readers/writer locks must be initialized prior to use.
The readers/writer lock pointed to by \fIrwlp\fR is
initialized by  \fBrwlock_init()\fR. A readers/writer lock is capable of having
several types of behavior, which is specified by \fItype\fR. \fIarg\fR is
currently not used, although a future type may define  new behavior parameters
by way of  \fIarg\fR.
.sp
.LP
The \fItype\fR argument can be one of the following:
.sp
.ne 2
.na
\fB\fBUSYNC_PROCESS\fR \fR
.ad
.RS 18n
The readers/writer lock can synchronize threads in this process and other
processes. The readers/writer lock should be initialized by only one process.
\fIarg\fR is ignored. A readers/writer lock initialized with this type, must be
allocated in memory shared between processses, i.e. either in Sys V shared
memory (see \fBshmop\fR(2)) or in memory mapped to a file (see \fBmmap\fR(2)).
It is illegal to initialize the object this way and to not allocate it in such
shared memory.
.RE

.sp
.ne 2
.na
\fB\fBUSYNC_THREAD\fR \fR
.ad
.RS 18n
The readers/writer lock can synchronize  threads in this process, only.
\fIarg\fR is ignored.
.RE

.sp
.LP
Additionally, readers/writer locks can be initialized by allocation  in zeroed
memory. A \fItype\fR of \fBUSYNC_THREAD\fR is assumed in this case. Multiple
threads must not simultaneously initialize the same  readers/writer lock. And a
readers/writer lock must not be re-initialized while in use by other threads.
.sp
.LP
The following are default readers/writer lock initialization (intra-process):
.sp
.in +2
.nf
rwlock_t rwlp;
rwlock_init(&rwlp, NULL, NULL);

.fi
.in -2

.sp
.LP
or
.sp
.in +2
.nf
rwlock_init(&rwlp, USYNC_THREAD, NULL);
.fi
.in -2

.sp
.LP
or
.sp
.in +2
.nf
rwlock_t  rwlp  =  DEFAULTRWLOCK;
.fi
.in -2

.sp
.LP
The following is a customized readers/writer lock  initialization
(inter-process):
.sp
.in +2
.nf
rwlock_init(&rwlp, USYNC_PROCESS, NULL);
.fi
.in -2

.sp
.LP
Any state associated with the readers/writer lock pointed to by \fIrwlp\fR are
destroyed by  \fBrwlock_destroy()\fR and the readers/writer lock storage space
is not released.
.sp
.LP
\fBrw_rdlock()\fR gets a read lock on the readers/writer lock pointed to by
\fIrwlp\fR. If the readers/writer lock is currently locked for writing, the
calling thread blocks until the write lock is freed. Multiple threads may
simultaneously hold a read lock on a  readers/writer lock.
.sp
.LP
\fBrw_tryrdlock()\fR tries to get a read lock on the readers/writer lock pointed
to by \fIrwlp\fR. If the readers/writer lock is locked for writing, it returns
an error; otherwise, the read lock is acquired.
.sp
.LP
\fBrw_wrlock()\fR gets a write lock on the readers/writer lock pointed to by
\fIrwlp\fR. If the readers/writer lock is currently locked for reading or
writing, the calling thread blocks until all the read and write locks are
freed. At any given time, only one thread may have a write lock on a
readers/writer lock.
.sp
.LP
\fBrw_trywrlock()\fR tries to get a write lock on the readers/writer lock
pointed to by \fIrwlp\fR. If the readers/writer lock is currently locked for
reading or writing, it returns an error.
.sp
.LP
\fBrw_unlock()\fR unlocks a readers/writer lock pointed to by  \fIrwlp\fR, if
the readers/writer lock is locked and the calling thread holds the lock for
either reading or writing. One of the other threads that is waiting for the
readers/writer  lock to be freed will be unblocked, provided there are other
waiting threads. If the calling thread does not hold the lock for either
reading or writing, no error status is returned, and the program's behavior is
unknown.
.SH RETURN VALUES
.sp
.LP
If successful, these functions return \fB0\fR. Otherwise, a non-zero value is
returned to indicate the error.
.SH ERRORS
.sp
.LP
The \fBrwlock_init()\fR function will fail if:
.sp
.ne 2
.na
\fB\fBEINVAL\fR \fR
.ad
.RS 11n
\fItype\fR is invalid.
.RE

.sp
.LP
The  \fBrw_tryrdlock()\fR or \fBrw_trywrlock()\fR functions will fail if:
.sp
.ne 2
.na
\fB\fBEBUSY\fR \fR
.ad
.RS 10n
The readers/writer lock pointed to by \fIrwlp\fR was already locked.
.RE

.sp
.LP
These functions may fail if:
.sp
.ne 2
.na
\fB\fBEFAULT\fR \fR
.ad
.RS 11n
\fIrwlp\fR or \fIarg\fR points to an illegal address.
.RE

.SH ATTRIBUTES
.sp
.LP
See \fBattributes\fR(5) for descriptions of the following attributes:
.sp

.sp
.TS
box;
c | c
l | l .
ATTRIBUTE TYPE	ATTRIBUTE VALUE
_
MT-Level	MT-Safe
.TE

.SH SEE ALSO
.sp
.LP
\fBmmap\fR(2), \fBattributes\fR(5)
.SH NOTES
.sp
.LP
These interfaces also available by way of:
.sp
.LP
\fB#include\fR \fB<thread.h>\fR
.sp
.LP
If multiple threads are waiting for a readers/writer lock, the acquisition
order is random by default. However, some implementations may bias acquisition
order to avoid depriving writers. The current implementation favors writers
over readers.