blob: 580cfa729966493e9e7a7b92653d302ceb86543b [file] [log] [blame]
#include <threads.h>
#include "pthread_impl.h"
int cnd_broadcast(cnd_t* c) {
__private_cond_signal(c, -1);
return thrd_success;
}