* sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_robust_dead):

Add private argument.
This commit is contained in:
Jakub Jelinek 2007-08-21 08:05:34 +00:00
parent 957df4294e
commit fc256454b9
1 changed files with 2 additions and 2 deletions

View File

@ -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)