mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-31 04:44:26 +01:00
ipmi: fixed respond sync, get message, try get message, try send message event: detach event emitter from file signals: basic implementation linker: fixed zero symbol relocation, fixed exec relocation shared_cv/mutex: implement eintr response support shared_cv: fixed possible loop instead of wait ipmi: implement invoke async, respond async, get result, get client app id, client get name rpcsx-os: add safemode flag
20 lines
602 B
C++
20 lines
602 B
C++
#include "KernelContext.hpp"
|
|
#include "sys/sysproto.hpp"
|
|
#include "thread/Process.hpp"
|
|
#include "thread/ProcessOps.hpp"
|
|
#include <cstdlib>
|
|
#include <unistd.h>
|
|
|
|
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) {
|
|
if (auto fork = thread->tproc->ops->fork) {
|
|
return fork(thread, flags);
|
|
}
|
|
return ErrorCode::NOSYS;
|
|
}
|