aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2007-08-21 08:05:34 +0000
committerJakub Jelinek <jakub@redhat.com>2007-08-21 08:05:34 +0000
commitfc256454b9c4f9bf5d8dda29b3d3f14f706fdc53 (patch)
treef241e2e8542fc38f3b1221a4ad76fa1130061a56
parent957df4294eacc0b24816986e1fea88d67d993131 (diff)
downloadglibc-fc256454b9c4f9bf5d8dda29b3d3f14f706fdc53.tar.xz
glibc-fc256454b9c4f9bf5d8dda29b3d3f14f706fdc53.zip
* sysdeps/unix/sysv/linux/alpha/lowlevellock.h (lll_robust_dead):
Add private argument.
-rw-r--r--sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h b/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h
index 9fa321cb3f..93188234cb 100644
--- a/sysdeps/unix/sysv/linux/alpha/nptl/lowlevellock.h
+++ b/sysdeps/unix/sysv/linux/alpha/nptl/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)