1 /* Read-write lock implementation.
2 Copyright (C) 1998 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Xavier Leroy <Xavier.Leroy@inria.fr>
5 and Ulrich Drepper <drepper@cygnus.com>, 1998.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
24 #include "internals.h"
30 pthread_rwlock_init (pthread_rwlock_t
*rwlock
,
31 const pthread_rwlockattr_t
*attr
)
33 __pthread_init_lock(&rwlock
->__rw_lock
);
34 rwlock
->__rw_readers
= 0;
35 rwlock
->__rw_writer
= NULL
;
36 rwlock
->__rw_read_waiting
= NULL
;
37 rwlock
->__rw_write_waiting
= NULL
;
41 rwlock
->__rw_kind
= PTHREAD_RWLOCK_DEFAULT_NP
;
42 rwlock
->__rw_pshared
= PTHREAD_PROCESS_PRIVATE
;
46 rwlock
->__rw_kind
= attr
->__lockkind
;
47 rwlock
->__rw_pshared
= attr
->__pshared
;
55 pthread_rwlock_destroy (pthread_rwlock_t
*rwlock
)
58 _pthread_descr writer
;
60 __pthread_lock (&rwlock
->__rw_lock
, NULL
);
61 readers
= rwlock
->__rw_readers
;
62 writer
= rwlock
->__rw_writer
;
63 __pthread_unlock (&rwlock
->__rw_lock
);
65 if (readers
> 0 || writer
!= NULL
)
73 pthread_rwlock_rdlock (pthread_rwlock_t
*rwlock
)
75 pthread_descr self
= NULL
;
79 __pthread_lock (&rwlock
->__rw_lock
, self
);
80 if (rwlock
->__rw_writer
== NULL
81 || (rwlock
->__rw_kind
== PTHREAD_RWLOCK_PREFER_READER_NP
82 && rwlock
->__rw_readers
!= 0))
83 /* We can add a reader lock. */
86 /* Suspend ourselves, then try again */
88 self
= thread_self ();
89 enqueue (&rwlock
->__rw_read_waiting
, self
);
90 __pthread_unlock (&rwlock
->__rw_lock
);
91 suspend (self
); /* This is not a cancellation point */
94 ++rwlock
->__rw_readers
;
95 __pthread_unlock (&rwlock
->__rw_lock
);
102 pthread_rwlock_tryrdlock (pthread_rwlock_t
*rwlock
)
106 __pthread_lock (&rwlock
->__rw_lock
, NULL
);
107 if (rwlock
->__rw_writer
== NULL
108 || (rwlock
->__rw_kind
== PTHREAD_RWLOCK_PREFER_READER_NP
109 && rwlock
->__rw_readers
!= 0))
111 ++rwlock
->__rw_readers
;
114 __pthread_unlock (&rwlock
->__rw_lock
);
121 pthread_rwlock_wrlock (pthread_rwlock_t
*rwlock
)
123 pthread_descr self
= thread_self ();
127 __pthread_lock (&rwlock
->__rw_lock
, self
);
128 if (rwlock
->__rw_readers
== 0 && rwlock
->__rw_writer
== NULL
)
130 rwlock
->__rw_writer
= self
;
131 __pthread_unlock (&rwlock
->__rw_lock
);
135 /* Suspend ourselves, then try again */
136 enqueue (&rwlock
->__rw_write_waiting
, self
);
137 __pthread_unlock (&rwlock
->__rw_lock
);
138 suspend (self
); /* This is not a cancellation point */
144 pthread_rwlock_trywrlock (pthread_rwlock_t
*rwlock
)
148 __pthread_lock (&rwlock
->__rw_lock
, NULL
);
149 if (rwlock
->__rw_readers
== 0 && rwlock
->__rw_writer
== NULL
)
151 rwlock
->__rw_writer
= thread_self ();
154 __pthread_unlock (&rwlock
->__rw_lock
);
161 pthread_rwlock_unlock (pthread_rwlock_t
*rwlock
)
163 pthread_descr torestart
;
166 __pthread_lock (&rwlock
->__rw_lock
, NULL
);
167 if (rwlock
->__rw_writer
!= NULL
)
169 /* Unlocking a write lock. */
170 if (rwlock
->__rw_writer
!= thread_self ())
172 __pthread_unlock (&rwlock
->__rw_lock
);
175 rwlock
->__rw_writer
= NULL
;
177 if (rwlock
->__rw_kind
== PTHREAD_RWLOCK_PREFER_READER_NP
178 || (th
= dequeue (&rwlock
->__rw_write_waiting
)) == NULL
)
180 /* Restart all waiting readers. */
181 torestart
= rwlock
->__rw_read_waiting
;
182 rwlock
->__rw_read_waiting
= NULL
;
183 __pthread_unlock (&rwlock
->__rw_lock
);
184 while ((th
= dequeue (&torestart
)) != NULL
)
189 /* Restart one waiting writer. */
190 __pthread_unlock (&rwlock
->__rw_lock
);
196 /* Unlocking a read lock. */
197 if (rwlock
->__rw_readers
== 0)
199 __pthread_unlock (&rwlock
->__rw_lock
);
203 --rwlock
->__rw_readers
;
204 if (rwlock
->__rw_readers
== 0)
205 /* Restart one waiting writer, if any. */
206 th
= dequeue (&rwlock
->__rw_write_waiting
);
210 __pthread_unlock (&rwlock
->__rw_lock
);
221 pthread_rwlockattr_init (pthread_rwlockattr_t
*attr
)
223 attr
->__lockkind
= 0;
231 pthread_rwlockattr_destroy (pthread_rwlockattr_t
*attr
)
238 pthread_rwlockattr_getpshared (const pthread_rwlockattr_t
*attr
, int *pshared
)
240 *pshared
= attr
->__pshared
;
246 pthread_rwlockattr_setpshared (pthread_rwlockattr_t
*attr
, int pshared
)
248 if (pshared
!= PTHREAD_PROCESS_PRIVATE
&& pshared
!= PTHREAD_PROCESS_SHARED
)
251 attr
->__pshared
= pshared
;
258 pthread_rwlockattr_getkind_np (const pthread_rwlockattr_t
*attr
, int *pref
)
260 *pref
= attr
->__lockkind
;
266 pthread_rwlockattr_setkind_np (pthread_rwlockattr_t
*attr
, int pref
)
268 if (pref
!= PTHREAD_RWLOCK_PREFER_READER_NP
269 && pref
!= PTHREAD_RWLOCK_PREFER_WRITER_NP
270 && pref
!= PTHREAD_RWLOCK_DEFAULT_NP
)
273 attr
->__lockkind
= pref
;