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