#include "sys/sysproto.hpp" orbis::SysResult orbis::sys_getpriority(Thread *thread, sint which, sint who) { return ErrorCode::NOSYS; } orbis::SysResult orbis::sys_setpriority(Thread *thread, sint which, sint who, sint prio) { return ErrorCode::NOSYS; } orbis::SysResult orbis::sys_rtprio_thread(Thread *thread, sint function, lwpid_t lwpid, ptr rtp) { std::printf("sys_rtprio_thread: unimplemented\n"); return {}; } orbis::SysResult orbis::sys_rtprio(Thread *thread, sint function, pid_t pid, ptr rtp) { return ErrorCode::NOSYS; } orbis::SysResult orbis::sys_setrlimit(Thread *thread, uint which, ptr rlp) { return ErrorCode::NOSYS; } orbis::SysResult orbis::sys_getrlimit(Thread *thread, uint which, ptr rlp) { return ErrorCode::NOSYS; } orbis::SysResult orbis::sys_getrusage(Thread *thread, sint who, ptr rusage) { return ErrorCode::NOSYS; }