Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
thread-stub
pthread_barrier_wait.c
pretty
plain
permalink
blame
history
•
7 lines
•
154 B
1
#include "pthread_impl.h"
2
3
int pthread_barrier_wait(pthread_barrier_t *b)
4
{
5
	if (!b->_b_limit) return PTHREAD_BARRIER_SERIAL_THREAD;
6
	__builtin_trap();
7
}