mirror of
https://github.com/ziglang/zig.git
synced 2026-02-08 07:27:18 +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
8 lines
91 B
C
8 lines
91 B
C
#include <threads.h>
|
|
|
|
int cnd_init(cnd_t *c)
|
|
{
|
|
*c = (cnd_t){ 0 };
|
|
return thrd_success;
|
|
}
|