blob: 393d4360279617249ce75fd2c07454ece190e256 [file] [log] [blame]
#include "futex_impl.h"
#include "threads_impl.h"
int pthread_cond_broadcast(pthread_cond_t* c) {
__private_cond_signal(c, -1);
return 0;
}