mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
[orbis-kernel] stub sys_fcntl
This commit is contained in:
parent
c62c853814
commit
07ea2f7c0c
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue