about summary refs log tree commit diff
path: root/nptl/sysdeps/unix/sysv/linux/sem_wait.c
diff options
context:
space:
mode:
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/sem_wait.c')
-rw-r--r--nptl/sysdeps/unix/sysv/linux/sem_wait.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/sem_wait.c b/nptl/sysdeps/unix/sysv/linux/sem_wait.c
index 0e50067cf6..1d39b7c408 100644
--- a/nptl/sysdeps/unix/sysv/linux/sem_wait.c
+++ b/nptl/sysdeps/unix/sysv/linux/sem_wait.c
@@ -38,7 +38,7 @@ __new_sem_wait (sem_t *sem)
     {
       if (*futex > 0)
 	{
-	  val = __lll_dec_if_positive (futex);
+	  val = atomic_decrement_if_positive (futex);
 	  if (val > 0)
 	    return 0;
 	}