ref: 227d52323d8f98c897a9269e9d4947cf1a28f4bd dir: /libnpe_pthread/pthread_cond_broadcast.c/
#include "_pthread.h" int pthread_cond_broadcast(pthread_cond_t *const cond) { qlock(cond->l); rwakeupall(cond); qunlock(cond->l); return 0; }