diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-10-01 20:35:28 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-10-01 20:35:28 +0530 |
commit | ad4e70da03353444aad95a4fbbd03cef2b750647 (patch) | |
tree | b7fd16e0cdb2f30deb7e3cb37c02d13fb39f9f83 /nptl/ChangeLog | |
parent | fd96752258901457148b702093a34a3d8c0fb7db (diff) | |
download | glibc-ad4e70da03353444aad95a4fbbd03cef2b750647.tar.gz glibc-ad4e70da03353444aad95a4fbbd03cef2b750647.tar.xz glibc-ad4e70da03353444aad95a4fbbd03cef2b750647.zip |
Fix PI mutex check in pthread_cond_broadcast and pthread_cond_signal
Fixes BZ #15988. The check had a typo - it checked for PTHREAD_MUTEX_ROBUST_NP instead of PTHREAD_MUTEX_ROBUST_NORMAL_NP. It has now been replaced by the already existing convenience macro USE_REQUEUE_PI.
Diffstat (limited to 'nptl/ChangeLog')
-rw-r--r-- | nptl/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 9f25dfe2ae..29469fcd91 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,12 @@ +2013-10-01 Siddhesh Poyarekar <siddhesh@redhat.com> + + [BZ #15988] + * pthread_cond_broadcast.c (__pthread_cond_broadcast) + [lll_futex_cmp_requeue_pi && __ASSUME_REQUEUE_PI]: Use + USE_REQUEUE_PI. + * pthread_cond_signal.c (__pthread_cond_signal) + [lll_futex_cmd_requeue_pi && __ASSUME_REQUEUE_PI]: Likewise. + 2013-09-27 Siddhesh Poyarekar <siddhesh@redhat.com> * sysdeps/pthread/bits/libc-lock.h [_LIBC && (!NOT_IN_libc || |