From: Jakub Jelinek Date: Tue, 21 Aug 2007 08:05:34 +0000 (+0000) Subject: * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_robust_dead): X-Git-Tag: cvs/fedora-glibc-20070825T1839~25 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=c273641b45eaccdc7f0ae71435f580de02c956e2;p=glibc.git * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_robust_dead): Add private argument. 2007-08-21 Jakub Jelinek * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_robust_dead): Add private argument. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 306324879c..96b49a8906 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2007-08-21 Jakub Jelinek + + * sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_robust_dead): + Add private argument. + 2007-08-20 Ulrich Drepper * sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S diff --git a/nptl/sysdeps/unix/sysv/linux/alpha/lowlevellock.h b/nptl/sysdeps/unix/sysv/linux/alpha/lowlevellock.h index 9fa321cb3f..93188234cb 100644 --- a/nptl/sysdeps/unix/sysv/linux/alpha/lowlevellock.h +++ b/nptl/sysdeps/unix/sysv/linux/alpha/lowlevellock.h @@ -94,12 +94,12 @@ INTERNAL_SYSCALL_ERROR_P (__ret, __err)? -__ret : __ret; \ }) -#define lll_robust_dead(futexv) \ +#define lll_robust_dead(futexv, private) \ do \ { \ int *__futexp = &(futexv); \ atomic_or (__futexp, FUTEX_OWNER_DIED); \ - lll_futex_wake (__futexp, 1, LLL_SHARED); \ + lll_futex_wake (__futexp, 1, private); \ } \ while (0)