diff options
author | Torvald Riegel <triegel@redhat.com> | 2015-01-13 01:09:29 +0100 |
---|---|---|
committer | Torvald Riegel <triegel@redhat.com> | 2015-01-13 01:09:29 +0100 |
commit | c60ec0e016f9e2444c7bc2703fc6b671a26f0f5e (patch) | |
tree | 326c98709f9086cef70470fabd496608a598305d /sysdeps/nptl | |
parent | 5a9e4c09a2601a8100ea9a1f7bc0360782cd1625 (diff) | |
download | glibc-c60ec0e016f9e2444c7bc2703fc6b671a26f0f5e.tar.gz glibc-c60ec0e016f9e2444c7bc2703fc6b671a26f0f5e.tar.xz glibc-c60ec0e016f9e2444c7bc2703fc6b671a26f0f5e.zip |
Fix wake-up in sysdeps/nptl/fork.c.
Diffstat (limited to 'sysdeps/nptl')
-rw-r--r-- | sysdeps/nptl/fork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/nptl/fork.c b/sysdeps/nptl/fork.c index 5cffd82ced..74482b7a38 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; } |