Fix wake-up in sysdeps/nptl/fork.c.

This commit is contained in:
Torvald Riegel 2015-01-13 01:09:29 +01:00
parent 5a9e4c09a2
commit c60ec0e016
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.
2015-01-12 Joseph Myers <joseph@codesourcery.com>
[BZ #17803]

View File

@ -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;
}