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