mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-11 19:20:09 +01:00
13 lines
405 B
C++
13 lines
405 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;
|
|
}
|