[COMMITTED] Fix wake-up in sysdeps/nptl/fork.c.
Torvald Riegel
triegel@redhat.com
Tue Jan 13 00:24:00 GMT 2015
Committed this as obvious. The futex wake-up needs the address of the
futex variable, not the value. I've searched glibc bugs for "fork", but
didn't see a bug that seemed to be likely to be related to this.
2015-01-13 Torvald Riegel <triegel@redhat.com>
* sysdeps/nptl/fork.c (__libc_fork): Provide address of futex
variable to lll_futex_wake call, not the value itself.
diff --git a/sysdeps/nptl/fork.c b/sysdeps/nptl/fork.c
index 5cffd82..74482b7 100644
--- a/sysdeps/nptl/fork.c
+++ b/sysdeps/nptl/fork.c
@@ -219,7 +219,7 @@ __libc_fork (void)
if (atomic_decrement_and_test (&allp->handler->refcntr)
&& allp->handler->need_signal)
- lll_futex_wake (allp->handler->refcntr, 1, LLL_PRIVATE);
+ lll_futex_wake (&allp->handler->refcntr, 1, LLL_PRIVATE);
allp = allp->next;
}
More information about the Libc-alpha
mailing list