mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 14:11:56 +00:00
revert previous change in cond var waiter move
using swap has a race condition: the waiters must be added to the mutex waiter count *before* they are taken off the cond var waiter count, or wake events can be lost.
This commit is contained in:
@ -30,8 +30,12 @@ int pthread_cond_broadcast(pthread_cond_t *c)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Move waiter count to the mutex */
|
/* Move waiter count to the mutex */
|
||||||
w = a_swap(&c->_c_waiters, 0);
|
for (;;) {
|
||||||
|
w = c->_c_waiters;
|
||||||
a_fetch_add(&m->_m_waiters, w);
|
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
|
/* Perform the futex requeue, waking one waiter unless we know
|
||||||
* that the calling thread holds the mutex. */
|
* that the calling thread holds the mutex. */
|
||||||
|
Reference in New Issue
Block a user