mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-04 00:32:40 +03:00
9 lines
246 B
C
Vendored
9 lines
246 B
C
Vendored
#include "pthread_impl.h"
|
|
|
|
int pthread_barrier_init(pthread_barrier_t *restrict b, const pthread_barrierattr_t *restrict a, unsigned count)
|
|
{
|
|
if (count-1 > INT_MAX-1) return EINVAL;
|
|
*b = (pthread_barrier_t){ ._b_limit = count-1 };
|
|
return 0;
|
|
}
|