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
16 lines
523 B
C++
16 lines
523 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_getcontext(Thread *thread,
|
|
ptr<UContext> ucp) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_setcontext(Thread *thread,
|
|
ptr<UContext> ucp) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_swapcontext(Thread *thread,
|
|
ptr<UContext> oucp,
|
|
ptr<UContext> ucp) {
|
|
return ErrorCode::NOSYS;
|
|
}
|