summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/thread/cnd_broadcast.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/thread/cnd_broadcast.c')
-rw-r--r--libc-top-half/musl/src/thread/cnd_broadcast.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/thread/cnd_broadcast.c b/libc-top-half/musl/src/thread/cnd_broadcast.c
new file mode 100644
index 0000000..e76b5a8
--- /dev/null
+++ b/libc-top-half/musl/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);
+}