diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-11-03 16:25:27 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-11-03 16:25:27 +0000 |
commit | 88a65bd83c682c9bfae0ee3d769ecfee17cfccbe (patch) | |
tree | 43427616f8a4a0fe1feafc585e6a2b4b56c31b8a /nptl | |
parent | 8dd5fcaca8ce7e43ed49879235f08d45d2a4a2e5 (diff) | |
download | glibc-88a65bd83c682c9bfae0ee3d769ecfee17cfccbe.zip glibc-88a65bd83c682c9bfae0ee3d769ecfee17cfccbe.tar.gz glibc-88a65bd83c682c9bfae0ee3d769ecfee17cfccbe.tar.bz2 |
Updated to fedora-glibc-20061103T1610
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/sysdeps/ia64/pthread_spin_unlock.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index baf3d4e..ac3ddff 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2006-10-30 Jakub Jelinek <jakub@redhat.com> + + * sysdeps/ia64/pthread_spin_unlock.c (pthread_spin_unlock): Use + __sync_lock_release instead of __sync_lock_release_si. + 2006-10-29 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/i386/sysdep-cancel.h (RTLD_SINGLE_THREAD_P): diff --git a/nptl/sysdeps/ia64/pthread_spin_unlock.c b/nptl/sysdeps/ia64/pthread_spin_unlock.c index 6232764..50d9c5f 100644 --- a/nptl/sysdeps/ia64/pthread_spin_unlock.c +++ b/nptl/sysdeps/ia64/pthread_spin_unlock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>, 2003. @@ -23,6 +23,6 @@ int pthread_spin_unlock (pthread_spinlock_t *lock) { - __sync_lock_release_si ((int *) lock); + __sync_lock_release ((int *) lock); return 0; } |