From 83b1b6d8faca6d279867c1c76f75e89786b76f4f Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 4 Jul 2000 08:22:44 +0000 Subject: Update. 2000-07-04 Ulrich Drepper * spinlock.c (__pthread_unlock): Properly place write barrier. Patch by Kaz Kylheku . --- linuxthreads/spinlock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'linuxthreads/spinlock.c') diff --git a/linuxthreads/spinlock.c b/linuxthreads/spinlock.c index 02ab9a9613..a63c6535c9 100644 --- a/linuxthreads/spinlock.c +++ b/linuxthreads/spinlock.c @@ -34,7 +34,7 @@ (status & 1) == 1: spinlock is taken and (status & ~1L) is a pointer to the first waiting thread; other - waiting threads are linked via the p_nextlock + waiting threads are linked via the p_nextlock field. (status & 1) == 0: same as above, but spinlock is not taken. @@ -149,8 +149,8 @@ int __pthread_unlock(struct _pthread_fastlock * lock) #endif #if !defined HAS_COMPARE_AND_SWAP { - lock->__spinlock = 0; WRITE_MEMORY_BARRIER(); + lock->__spinlock = 0; return 0; } #endif @@ -160,7 +160,7 @@ again: oldstatus = lock->__status; while ((oldstatus = lock->__status) == 1) { - if (__compare_and_swap_with_release_semantics(&lock->__status, + if (__compare_and_swap_with_release_semantics(&lock->__status, oldstatus, 0)) return 0; } -- cgit v1.2.3