mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00: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;
|
|
}
|