diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-12-01 21:39:30 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-12-01 21:42:12 +0100 |
commit | fc493bc9e6fe8ecdd00f79b9a8a3d4675137a602 (patch) | |
tree | 75ea15d71527fceb2b1511620420960fbbe439c1 /ChangeLog | |
parent | 6310e6be9b7c322d56a45729b3ebcd22e26dd0c2 (diff) | |
download | glibc-fc493bc9e6fe8ecdd00f79b9a8a3d4675137a602.tar.gz glibc-fc493bc9e6fe8ecdd00f79b9a8a3d4675137a602.tar.xz glibc-fc493bc9e6fe8ecdd00f79b9a8a3d4675137a602.zip |
htl: Fix comparing attr with default values
Fortunately we were previously only missing an optimization. Thanks dcb <dcb314@hotmail.com> for the report [BZ #23032] * sysdeps/htl/pt-barrier-init.c (pthread_barrier_init): Fix comparing attr with __pthread_default_barrierattr. * sysdeps/htl/pt-cond-init.c (__pthread_cond_init): Fix comparing attr with __pthread_default_condattr. * sysdeps/htl/pt-mutex-init.c (_pthread_mutex_init): Fix comparing attr with __pthread_default_mutexattr. * sysdeps/htl/pt-rwlock-init.c (_pthread_rwlock_init): Fix comparing attr with __pthread_default_rwlockattr.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 411116acbe..e00d691d90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2018-12-01 Samuel Thibault <samuel.thibault@ens-lyon.org> + + [BZ #23032] + * sysdeps/htl/pt-barrier-init.c (pthread_barrier_init): Fix comparing + attr with __pthread_default_barrierattr. + * sysdeps/htl/pt-cond-init.c (__pthread_cond_init): Fix comparing + attr with __pthread_default_condattr. + * sysdeps/htl/pt-mutex-init.c (_pthread_mutex_init): Fix comparing + attr with __pthread_default_mutexattr. + * sysdeps/htl/pt-rwlock-init.c (_pthread_rwlock_init): Fix comparing + attr with __pthread_default_rwlockattr. + 2018-12-01 Kemi Wang <kemi.wang@intel.com> * manual/tunables.texi (POSIX Thread Tunables): New node. |