fix deadlock in condition wait whenever there are multiple waiters
[musl] / src / thread / pthread_cond_signal.c
index a021128..e8ed71c 100644 (file)
@@ -2,7 +2,8 @@
 
 int pthread_cond_signal(pthread_cond_t *c)
 {
-       if (a_swap(&c->_c_block, 0));
+       int w = c->_c_waiters;
+       if (a_swap(&c->_c_block, 0) || w)
                __wake(&c->_c_block, 1, 0);
        return 0;
 }