1 #include <threads.h>
2 
3 #include "threads_impl.h"
4 
cnd_broadcast(cnd_t * c)5 int cnd_broadcast(cnd_t* c) {
6     __private_cond_signal(c, -1);
7     return thrd_success;
8 }
9