[orbis-kernel] stub sys_fcntl

This commit is contained in:
DH 2023-11-11 17:01:54 +03:00
parent c62c853814
commit 07ea2f7c0c

View file

@ -26,7 +26,8 @@ orbis::SysResult orbis::sys_dup(Thread *thread, uint fd) {
}
orbis::SysResult orbis::sys_fcntl(Thread *thread, sint fd, sint cmd,
slong arg) {
return ErrorCode::NOSYS;
ORBIS_LOG_TODO(__FUNCTION__, fd, cmd, arg);
return {};
}
orbis::SysResult orbis::sys_close(Thread *thread, sint fd) {
ORBIS_LOG_NOTICE(__FUNCTION__, fd);