initial check-in, version 0.5.0
[musl] / src / thread / pthread_cond_broadcast.c
1 #include "pthread_impl.h"
2
3 int pthread_cond_broadcast(pthread_cond_t *c)
4 {
5         c->__block = 0;
6         __wake(&c->__block, -1, 0);
7         return 0;
8 }