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
10 lines
240 B
C
10 lines
240 B
C
#include <threads.h>
|
|
|
|
int cnd_wait(cnd_t *c, mtx_t *m)
|
|
{
|
|
/* Calling cnd_timedwait with a null pointer is an extension.
|
|
* It is convenient here to avoid duplication of the logic
|
|
* for return values. */
|
|
return cnd_timedwait(c, m, 0);
|
|
}
|