[orbis-kernel] stub more syscalls

This commit is contained in:
DH 2023-09-03 22:26:20 +03:00
parent 89b7dcd497
commit a952642ea9
4 changed files with 12 additions and 5 deletions

View file

@ -358,7 +358,8 @@ orbis::SysResult orbis::sys_umask(Thread *thread, sint newmask) {
return ErrorCode::NOSYS;
}
orbis::SysResult orbis::sys_revoke(Thread *thread, ptr<char> path) {
return ErrorCode::NOSYS;
ORBIS_LOG_WARNING(__FUNCTION__);
return {};
}
orbis::SysResult orbis::sys_lgetfh(Thread *thread, ptr<char> fname,
ptr<struct fhandle> fhp) {