1 /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 #include <lowlevelrwlock.h>
40 .globl __pthread_rwlock_rdlock
41 .type __pthread_rwlock_rdlock,@function
43 __pthread_rwlock_rdlock:
56 xaddl %eax, MUTEX(%ebx)
61 2: movl WRITER(%ebx), %eax
64 cmp $0, WRITERS_QUEUED(%ebx)
69 3: incl READERS_QUEUED(%ebx)
72 movl READERS_WAKEUP(%ebx), %edx
82 11: addl $READERS_WAKEUP-MUTEX, %ebx
83 movl %esi, %ecx /* movl $FUTEX_WAIT, %ecx */
87 subl $READERS_WAKEUP-MUTEX, %ebx
95 xaddl %eax, MUTEX(%ebx)
100 13: decl READERS_QUEUED(%ebx)
104 incl NR_READERS(%ebx)
124 leal MUTEX(%ebx), %ecx
126 call __lll_mutex_lock_wait
131 /* Deadlock detected. */
139 leal MUTEX(%ebx), %eax
141 call __lll_mutex_unlock_wake
145 8: decl NR_READERS(%ebx)
150 4: decl READERS_QUEUED(%ebx)
158 leal MUTEX(%ebx), %eax
160 call __lll_mutex_unlock_wake
167 leal MUTEX(%ebx), %ecx
169 call __lll_mutex_lock_wait
171 .size __pthread_rwlock_rdlock,.-__pthread_rwlock_rdlock
173 .globl pthread_rwlock_rdlock
174 pthread_rwlock_rdlock = __pthread_rwlock_rdlock
176 .globl __pthread_rwlock_rdlock_internal
177 __pthread_rwlock_rdlock_internal = __pthread_rwlock_rdlock