musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat
-rw-r--r--src/thread/pthread_cond_broadcast.c 8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/thread/pthread_cond_broadcast.c b/src/thread/pthread_cond_broadcast.c
index 4fab9994..7e5ea91c 100644
--- a/src/thread/pthread_cond_broadcast.c
+++ b/src/thread/pthread_cond_broadcast.c
@@ -30,8 +30,12 @@ int pthread_cond_broadcast(pthread_cond_t *c)
}
/* Move waiter count to the mutex */
- w = a_swap(&c->_c_waiters, 0);
- a_fetch_add(&m->_m_waiters, w);
+ for (;;) {
+ w = c->_c_waiters;
+ a_fetch_add(&m->_m_waiters, w);
+ if (a_cas(&c->_c_waiters, w, 0) == w) break;
+ a_fetch_add(&m->_m_waiters, -w);
+ }
/* Perform the futex requeue, waking one waiter unless we know
* that the calling thread holds the mutex. */
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月05日 05:40:55 +0000

AltStyle によって変換されたページ (->オリジナル) /