X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_cond_broadcast.c;h=dec91164065d844b67b2af27d8994b24e64e2d53;hp=6002c53507be55152328caacd3394614daa0dffd;hb=97c5b5a87c3d9df54278e1073d6177f77536bd32;hpb=c41a76f58ce0238172effe982f2cee7bbd2a60a4 diff --git a/src/thread/pthread_cond_broadcast.c b/src/thread/pthread_cond_broadcast.c index 6002c535..dec91164 100644 --- a/src/thread/pthread_cond_broadcast.c +++ b/src/thread/pthread_cond_broadcast.c @@ -2,8 +2,7 @@ int pthread_cond_broadcast(pthread_cond_t *c) { - int w = c->_c_waiters; - if (a_swap(&c->_c_block, 0) || w) - __wake(&c->_c_block, -1, 0); + a_store(&c->_c_block, 0); + if (c->_c_waiters) __wake(&c->_c_block, -1, 0); return 0; }