1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

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

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