mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +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
24 lines
861 B
C++
24 lines
861 B
C++
#include "sys/sysproto.hpp"
|
|
#include "thread/Thread.hpp"
|
|
#include "thread/Process.hpp"
|
|
#include "thread/ProcessOps.hpp"
|
|
|
|
orbis::SysResult orbis::sys_execve(Thread *thread, ptr<char> fname,
|
|
ptr<ptr<char>> argv, ptr<ptr<char>> envv) {
|
|
if (auto execve = thread->tproc->ops->execve) {
|
|
return execve(thread, fname, argv, envv);
|
|
}
|
|
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_fexecve(Thread *thread, sint fd,
|
|
ptr<ptr<char>> argv, ptr<ptr<char>> envv) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys___mac_execve(Thread *thread, ptr<char> fname,
|
|
ptr<ptr<char>> argv,
|
|
ptr<ptr<char>> envv,
|
|
ptr<struct mac> mac_p) {
|
|
return ErrorCode::NOSYS;
|
|
}
|