mirror of
https://github.com/ziglang/zig.git
synced 2026-01-19 13:55:20 +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
151 B
C
8 lines
151 B
C
#include <sys/resource.h>
|
|
#include "syscall.h"
|
|
|
|
int setpriority(int which, id_t who, int prio)
|
|
{
|
|
return syscall(SYS_setpriority, which, who, prio);
|
|
}
|