mirror of
https://github.com/ziglang/zig.git
synced 2026-02-10 03:20:58 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
9 lines
264 B
C
9 lines
264 B
C
#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 | (a?a->__attr:0) };
|
|
return 0;
|
|
}
|