mirror of
https://github.com/fluencelabs/musl
synced 2025-07-31 14:21:57 +00:00
fix lost signals in cond vars
due to moving waiters from the cond var to the mutex in bcast, these waiters upon wakeup would steal slots in the count from newer waiters that had not yet been signaled, preventing the signal function from taking any action. to solve the problem, we simply use two separate waiter counts, and so that the original "total" waiters count is undisturbed by broadcast and still available for signal.
This commit is contained in:
@@ -22,8 +22,12 @@ int pthread_cond_broadcast(pthread_cond_t *c)
|
||||
m = c->_c_mutex;
|
||||
|
||||
/* Move waiter count to the mutex */
|
||||
a_fetch_add(&m->_m_waiters, c->_c_waiters);
|
||||
a_store(&c->_c_waiters, 0);
|
||||
for (;;) {
|
||||
int w = c->_c_waiters2;
|
||||
a_fetch_add(&m->_m_waiters, w);
|
||||
if (a_cas(&c->_c_waiters2, 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. */
|
||||
|
Reference in New Issue
Block a user