mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 08:13:07 +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
10 lines
207 B
C
Vendored
10 lines
207 B
C
Vendored
#include "pthread_impl.h"
|
|
|
|
int pthread_condattr_setpshared(pthread_condattr_t *a, int pshared)
|
|
{
|
|
if (pshared > 1U) return EINVAL;
|
|
a->__attr &= 0x7fffffff;
|
|
a->__attr |= (unsigned)pshared<<31;
|
|
return 0;
|
|
}
|