about summary refs log tree commit diff
path: root/nptl/sysdeps/unix/sysv/linux/ia64
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-03-20 10:28:06 +0000
committerUlrich Drepper <drepper@redhat.com>2003-03-20 10:28:06 +0000
commit9daba4f4b988977b01427a47908a0ca4ab717984 (patch)
treed1ae2cd13fc64e2b89f65cc9940f9ab0ae81aa30 /nptl/sysdeps/unix/sysv/linux/ia64
parent53fcb885017b3c01e960c0ad68616dbad61f9192 (diff)
downloadglibc-9daba4f4b988977b01427a47908a0ca4ab717984.tar.gz
glibc-9daba4f4b988977b01427a47908a0ca4ab717984.tar.xz
glibc-9daba4f4b988977b01427a47908a0ca4ab717984.zip
Replace __lll_add calls with atomic_exchange_and_add calls respectively.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/ia64')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/ia64/pthread_once.c2
-rw-r--r--nptl/sysdeps/unix/sysv/linux/ia64/sem_post.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/ia64/pthread_once.c b/nptl/sysdeps/unix/sysv/linux/ia64/pthread_once.c
index 2f671fac41..c9e6be16b8 100644
--- a/nptl/sysdeps/unix/sysv/linux/ia64/pthread_once.c
+++ b/nptl/sysdeps/unix/sysv/linux/ia64/pthread_once.c
@@ -80,7 +80,7 @@ __pthread_once (once_control, init_routine)
 
 
       /* Add one to *once_control.  */
-      __lll_add (once_control, 1);
+      atomic_exchange_and_add (once_control, 1);
 
       /* Wake up all other threads.  */
       lll_futex_wake (once_control, INT_MAX);
diff --git a/nptl/sysdeps/unix/sysv/linux/ia64/sem_post.c b/nptl/sysdeps/unix/sysv/linux/ia64/sem_post.c
index 9b5049e7ae..0527abeba6 100644
--- a/nptl/sysdeps/unix/sysv/linux/ia64/sem_post.c
+++ b/nptl/sysdeps/unix/sysv/linux/ia64/sem_post.c
@@ -32,7 +32,7 @@ __new_sem_post (sem_t *sem)
   int *futex = (int *) sem;
   int err, nr;
 
-  nr = __lll_add (futex, 1);
+  nr = atomic_exchange_and_add (futex, 1);
   err = lll_futex_wake (futex, nr + 1);
   if (__builtin_expect (err, 0) < 0)
     {