aboutsummaryrefslogtreecommitdiff
path: root/nptl/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2006-10-30 00:41:07 +0000
committerUlrich Drepper <drepper@redhat.com>2006-10-30 00:41:07 +0000
commitedece8f10161ced3bed66845b7bee64f7e9fea4b (patch)
tree6e5b38ebdb9bc98d00555a62cd886e5093e77141 /nptl/sysdeps
parent536e40e287df5438683e78e64867009f7a0d2698 (diff)
downloadglibc-edece8f10161ced3bed66845b7bee64f7e9fea4b.zip
glibc-edece8f10161ced3bed66845b7bee64f7e9fea4b.tar.gz
glibc-edece8f10161ced3bed66845b7bee64f7e9fea4b.tar.bz2
* sysdeps/ia64/pthread_spin_unlock.c (pthread_spin_unlock): Use
__sync_lock_release instead of __sync_lock_release_si.
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r--nptl/sysdeps/ia64/pthread_spin_unlock.c4
1 files changed, 2 insertions, 2 deletions
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;
}