X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_cond_broadcast.c;fp=src%2Fthread%2Fpthread_cond_broadcast.c;h=1d378c0b271b0420044a5dc842eba04f6c3887e0;hp=7a023b850bab8c8627ab5d543c5ddc46947d439d;hb=e882756311c7b06e59fcc8e582f03852b7dcfd30;hpb=4fd159568aa1852fbbe6c11d35ccecaec3715d7c diff --git a/src/thread/pthread_cond_broadcast.c b/src/thread/pthread_cond_broadcast.c index 7a023b85..1d378c0b 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); + c->_c_block = 0; + __wake(&c->_c_block, -1, 0); return 0; }