mirror of
https://github.com/ziglang/zig.git
synced 2026-02-10 19:41:16 +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
173 B
C
Vendored
8 lines
173 B
C
Vendored
#include <sys/wait.h>
|
|
#include "syscall.h"
|
|
|
|
int waitid(idtype_t type, id_t id, siginfo_t *info, int options)
|
|
{
|
|
return syscall_cp(SYS_waitid, type, id, info, options, 0);
|
|
}
|