Multithreaded Programming Guide

cond_broadcast(3T)

#include <thread.h>

int cond_broadcast(cond_t *cv);

Use cond_broadcast() to unblock all threads that are blocked on the condition variable pointed to by cv. When no threads are blocked on the condition variable then cond_broadcast() has no effect.