diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-18 17:20:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-18 17:20:58 +0000 |
commit | 83142e8fe1f329cb2636a851132e9d1eb28a23c3 (patch) | |
tree | 2d91f626d052c93cdb229f1c8365525e3effaccb /linuxthreads/spinlock.c | |
parent | e6574c9ca263afb7d408dd5ebf09ad8cb0178469 (diff) | |
download | glibc-83142e8fe1f329cb2636a851132e9d1eb28a23c3.tar.gz glibc-83142e8fe1f329cb2636a851132e9d1eb28a23c3.tar.xz glibc-83142e8fe1f329cb2636a851132e9d1eb28a23c3.zip |
Update.
2000-07-18 Ulrich Drepper <drepper@redhat.com> * include/libc-symbols.h: Define RETURN_ADDRESS macro. * dlfcn/dlopen.c: Use RETURN_ADDRESS instead of __builtin_return_address. * dlfcn/dlopenold.c: Likewise. * dlfcn/dlsym.c: Likewise. * dlfcn/dlvsym.c: Likewise. * elf/dl-profstub.c: Likewise. * malloc/malloc.c: Likewise. * sysdeps/generic/machine-gmon.h: Likewise. Based on a patch by schwidefsky@de.ibm.com.
Diffstat (limited to 'linuxthreads/spinlock.c')
-rw-r--r-- | linuxthreads/spinlock.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/linuxthreads/spinlock.c b/linuxthreads/spinlock.c index 43190a2eda..4ed4203970 100644 --- a/linuxthreads/spinlock.c +++ b/linuxthreads/spinlock.c @@ -417,8 +417,7 @@ void __pthread_alt_lock(struct _pthread_fastlock * lock, /* Make sure the store in wait_node.next completes before performing the compare-and-swap */ MEMORY_BARRIER(); - } while(! compare_and_swap(&lock->__status, oldstatus, newstatus, - &lock->__spinlock)); + } while(! __compare_and_swap(&lock->__status, oldstatus, newstatus)); /* Suspend. Note that unlike in __pthread_lock, we don't worry here about spurious wakeup. That's because this lock is not @@ -487,8 +486,7 @@ int __pthread_alt_timedlock(struct _pthread_fastlock * lock, /* Make sure the store in wait_node.next completes before performing the compare-and-swap */ MEMORY_BARRIER(); - } while(! compare_and_swap(&lock->__status, oldstatus, newstatus, - &lock->__spinlock)); + } while(! __compare_and_swap(&lock->__status, oldstatus, newstatus)); #endif #if !defined HAS_COMPARE_AND_SWAP || defined TEST_FOR_COMPARE_AND_SWAP |