about summary refs log tree commit diff
path: root/sysdeps/htl
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-22 22:27:24 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-08-22 22:27:24 +0200
commit4565083abc972bffe810e4151f8f3cb48531e526 (patch)
tree8cab8d695ba64687a2f9cc2d085da73d5f32c2ed /sysdeps/htl
parent8bf0bc8350b32ae1b052b9a7de5f9e84b35e325e (diff)
downloadglibc-4565083abc972bffe810e4151f8f3cb48531e526.tar.gz
glibc-4565083abc972bffe810e4151f8f3cb48531e526.tar.xz
glibc-4565083abc972bffe810e4151f8f3cb48531e526.zip
htl: Make pthread*_cond_timedwait register wref before releasing mutex
Otherwise another thread could be rightly trying to destroy the condition,
see e.g. tst-cond20.
Diffstat (limited to 'sysdeps/htl')
-rw-r--r--sysdeps/htl/pt-cond-timedwait.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sysdeps/htl/pt-cond-timedwait.c b/sysdeps/htl/pt-cond-timedwait.c
index 6f4cb41bf1..4352e54fff 100644
--- a/sysdeps/htl/pt-cond-timedwait.c
+++ b/sysdeps/htl/pt-cond-timedwait.c
@@ -142,13 +142,15 @@ __pthread_cond_timedwait_internal (pthread_cond_t *cond,
 
   __pthread_mutex_unlock (&self->cancel_lock);
 
-  /* Release MUTEX before blocking.  */
-  __pthread_mutex_unlock (mutex);
-
   /* Increase the waiter reference count.  Relaxed MO is sufficient because
-     we only need to synchronize when decrementing the reference count.  */
+     we only need to synchronize when decrementing the reference count.
+     We however need to have the mutex held to prevent concurrency with
+     a pthread_cond_destroy.  */
   atomic_fetch_add_relaxed (&cond->__wrefs, 2);
 
+  /* Release MUTEX before blocking.  */
+  __pthread_mutex_unlock (mutex);
+
   /* Block the thread.  */
   if (abstime != NULL)
     err = __pthread_timedblock (self, abstime, clock_id);