mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
11 lines
388 B
C++
11 lines
388 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_fork(Thread *thread) { return ErrorCode::NOSYS; }
|
|
orbis::SysResult orbis::sys_pdfork(Thread *thread, ptr<sint> fdp, sint flags) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_vfork(Thread *thread) { return ErrorCode::NOSYS; }
|
|
orbis::SysResult orbis::sys_rfork(Thread *thread, sint flags) {
|
|
return ErrorCode::NOSYS;
|
|
}
|