X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fpthread_cond_broadcast.c;h=1d378c0b271b0420044a5dc842eba04f6c3887e0;hp=7a023b850bab8c8627ab5d543c5ddc46947d439d;hb=29fae65780f4c5ccda3758828da7a83073297ccc;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 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; }