]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/thread/pthread_barrierattr_setpshared.c
bump version to 0.0~git20240411.9e8c542-3~bpo12+pve1
[wasi-libc.git] / libc-top-half / musl / src / thread / pthread_barrierattr_setpshared.c
1 #include "pthread_impl.h"
2
3 int pthread_barrierattr_setpshared(pthread_barrierattr_t *a, int pshared)
4 {
5 if (pshared > 1U) return EINVAL;
6 a->__attr = pshared ? INT_MIN : 0;
7 return 0;
8 }