summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/thread/pthread_barrier_destroy.c
blob: a347a2c12a4804831b741aae7e86987c650e1c50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "pthread_impl.h"

int pthread_barrier_destroy(pthread_barrier_t *b)
{
	if (b->_b_limit < 0) {
		if (b->_b_lock) {
			int v;
			a_or(&b->_b_lock, INT_MIN);
			while ((v = b->_b_lock) & INT_MAX)
				__wait(&b->_b_lock, 0, v, 0);
		}
#ifdef __wasilibc_unmodified_upstream /* WASI does not understand processes or locking between them. */
		__vm_wait();
#endif
	}
	return 0;
}