diff options
Diffstat (limited to 'src/thread/cnd_broadcast.c')
-rw-r--r-- | src/thread/cnd_broadcast.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/thread/cnd_broadcast.c b/src/thread/cnd_broadcast.c new file mode 100644 index 0000000..e76b5a8 --- /dev/null +++ b/src/thread/cnd_broadcast.c @@ -0,0 +1,9 @@ +#include <threads.h> +#include <pthread.h> + +int cnd_broadcast(cnd_t *c) +{ + /* This internal function never fails, and always returns zero, + * which matches the value thrd_success is defined with. */ + return __private_cond_signal((pthread_cond_t *)c, -1); +} |