]> git.proxmox.com Git - wasi-libc.git/blame - libc-top-half/musl/src/thread/cnd_broadcast.c
bump version to 0.0~git20230821.ec4566b-1~bpo12+pve1
[wasi-libc.git] / libc-top-half / musl / src / thread / cnd_broadcast.c
CommitLineData
320054e8
DG
1#include <threads.h>
2#include <pthread.h>
3
4int cnd_broadcast(cnd_t *c)
5{
6 /* This internal function never fails, and always returns zero,
7 * which matches the value thrd_success is defined with. */
8 return __private_cond_signal((pthread_cond_t *)c, -1);
9}