summaryrefslogtreecommitdiff
path: root/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-08-31 18:54:54 +0000
committerJakub Jelinek <jakub@redhat.com>2006-08-31 18:54:54 +0000
commit4c7854d1dce24e8cc344f1da81fca01ee7f01804 (patch)
treefd5a0613d299d10e9c9f8cf09ae04304e43697c8 /nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
parent936bb2647a835e63e99fa2d1590ab1e14aab4712 (diff)
Updated to fedora-glibc-20060831T1812cvs/fedora-glibc-2_4_90-28
Diffstat (limited to 'nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c')
-rw-r--r--nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c b/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
index ab7bc7babb..97c0598f96 100644
--- a/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
+++ b/nptl/sysdeps/pthread/pthread_rwlock_timedwrlock.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
+/* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>, 2003.
@@ -40,9 +40,7 @@ pthread_rwlock_timedwrlock (rwlock, abstime)
int err;
/* Get the rwlock if there is no writer and no reader. */
- if (rwlock->__data.__writer == 0 && rwlock->__data.__nr_readers == 0
- && (rwlock->__data.__flags != 0
- || rwlock->__data.__nr_readers_queued == 0))
+ if (rwlock->__data.__writer == 0 && rwlock->__data.__nr_readers == 0)
{
/* Mark self as writer. */
rwlock->__data.__writer = THREAD_GETMEM (THREAD_SELF, tid);