musl/src/thread/pthread_cond_broadcast.c

9 lines
134 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "pthread_impl.h"
int pthread_cond_broadcast(pthread_cond_t *c)
{
c->__block = 0;
__wake(&c->__block, -1, 0);
return 0;
}