1 /* Copyright (C) 2002, 2003, 2007 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 <lowlevellock.h>
22 #include <lowlevelrwlock.h>
23 #include <pthread-errnos.h>
24 #include <kernel-features.h>
29 .globl pthread_rwlock_timedrdlock
30 .type pthread_rwlock_timedrdlock,@function
32 pthread_rwlock_timedrdlock:
49 cmpxchgl %edx, MUTEX(%ebp)
53 2: movl WRITER(%ebp), %eax
56 cmpl $0, WRITERS_QUEUED(%ebp)
61 /* Check the value of the timeout parameter. */
62 3: cmpl $1000000000, 4(%edi)
65 addl $1, READERS_QUEUED(%ebp)
68 movl READERS_WAKEUP(%ebp), %esi
78 /* Get current time. */
81 movl $__NR_gettimeofday, %eax
84 /* Compute relative timeout. */
87 mul %edx /* Milli seconds to nano seconds. */
93 addl $1000000000, %edx
96 js 16f /* Time is already up. */
99 movl %ecx, (%esp) /* Store relative timeout. */
103 #ifdef __ASSUME_PRIVATE_FUTEX
104 movzbl PSHARED(%ebp), %ecx
105 xorl $FUTEX_PRIVATE_FLAG|FUTEX_WAIT, %ecx
107 movzbl PSHARED(%ebp), %ecx
109 orl $FUTEX_WAIT, %ecx
111 xorl %gs:PRIVATE_FUTEX, %ecx
114 leal READERS_WAKEUP(%ebp), %ebx
115 movl $SYS_futex, %eax
120 /* Reget the lock. */
125 cmpxchgl %edx, (%ebp)
127 cmpxchgl %edx, MUTEX(%ebp)
131 13: subl $1, READERS_QUEUED(%ebp)
132 cmpl $-ETIMEDOUT, %esi
135 18: movl $ETIMEDOUT, %edx
140 addl $1, NR_READERS(%ebp)
163 leal MUTEX(%ebp), %edx
165 movzbl PSHARED(%ebp), %ecx
169 14: cmpl %gs:TID, %eax
178 leal MUTEX(%ebp), %eax
180 movzbl PSHARED(%ebp), %ecx
181 call __lll_unlock_wake
185 8: subl $1, NR_READERS(%ebp)
190 4: subl $1, READERS_QUEUED(%ebp)
198 leal MUTEX(%ebp), %eax
200 movzbl PSHARED(%ebp), %ecx
201 call __lll_unlock_wake
208 leal MUTEX(%ebp), %edx
210 movzbl PSHARED(%ebp), %ecx
214 16: movl $-ETIMEDOUT, %esi
217 19: movl $EINVAL, %edx
219 .size pthread_rwlock_timedrdlock,.-pthread_rwlock_timedrdlock