diff options
Diffstat (limited to 'src/threads/cnd_broadcast.c')
-rw-r--r-- | src/threads/cnd_broadcast.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/threads/cnd_broadcast.c b/src/threads/cnd_broadcast.c new file mode 100644 index 00000000..863ed380 --- /dev/null +++ b/src/threads/cnd_broadcast.c @@ -0,0 +1,7 @@ +#include <threads.h> +#include <pthread.h> + +int cnd_broadcast(cnd_t *cond) +{ + return pthread_cond_broadcast(cond); +} |