mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
489 B
C++
14 lines
489 B
C++
|
|
#include "sys/sysproto.hpp"
|
||
|
|
|
||
|
|
orbis::SysResult orbis::sys_exit(Thread *thread, sint status) {
|
||
|
|
if (auto exit = thread->tproc->ops->exit) {
|
||
|
|
return exit(thread, status);
|
||
|
|
}
|
||
|
|
|
||
|
|
return ErrorCode::NOSYS;
|
||
|
|
}
|
||
|
|
orbis::SysResult orbis::sys_abort2(Thread *thread, ptr<const char> why, sint narg, ptr<ptr<void>> args) { return ErrorCode::NOSYS; }
|
||
|
|
orbis::SysResult orbis::sys_wait4(Thread *thread, sint pid, ptr<sint> status, sint options, ptr<struct rusage> rusage) { return ErrorCode::NOSYS; }
|
||
|
|
|
||
|
|
|