diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-12-12 14:00:37 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-12-12 14:00:37 -0800 |
commit | 439c43f6eabcb515b445e2bb03a653ec678f3021 (patch) | |
tree | 84f5759dd4d98a1f6a103b90a7e4680166669670 /nptl | |
parent | 48e435cd93fa55ff415b90fbcdf657ded01e45b6 (diff) | |
download | glibc-439c43f6eabcb515b445e2bb03a653ec678f3021.tar.gz glibc-439c43f6eabcb515b445e2bb03a653ec678f3021.tar.xz glibc-439c43f6eabcb515b445e2bb03a653ec678f3021.zip |
Fix NPTL build for !__ASSUME_SET_ROBUST_LIST case.
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 0e96a2ea8f..c4b0726392 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); } |