diff options
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/pthread_create.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c index 0e96a2e..c4b0726 100644 --- a/nptl/pthread_create.c +++ b/nptl/pthread_create.c @@ -414,7 +414,7 @@ START_THREAD_DEFN this->__list.__next = NULL; atomic_or (&this->__lock, FUTEX_OWNER_DIED); - lll_futex_wake (this->__lock, 1, /* XYZ */ LLL_SHARED); + lll_futex_wake (&this->__lock, 1, /* XYZ */ LLL_SHARED); } while (robust != (void *) &pd->robust_head); } |