2023-07-03 13:10:16 +02:00
|
|
|
#include "sys/sysproto.hpp"
|
|
|
|
|
|
2023-07-06 18:16:25 +02:00
|
|
|
orbis::SysResult orbis::sys_getcontext(Thread *thread,
|
2024-01-13 18:57:02 +01:00
|
|
|
ptr<UContext> ucp) {
|
2023-07-06 18:16:25 +02:00
|
|
|
return ErrorCode::NOSYS;
|
|
|
|
|
}
|
|
|
|
|
orbis::SysResult orbis::sys_setcontext(Thread *thread,
|
2024-01-13 18:57:02 +01:00
|
|
|
ptr<UContext> ucp) {
|
2023-07-06 18:16:25 +02:00
|
|
|
return ErrorCode::NOSYS;
|
|
|
|
|
}
|
|
|
|
|
orbis::SysResult orbis::sys_swapcontext(Thread *thread,
|
2024-01-13 18:57:02 +01:00
|
|
|
ptr<UContext> oucp,
|
|
|
|
|
ptr<UContext> ucp) {
|
2023-07-06 18:16:25 +02:00
|
|
|
return ErrorCode::NOSYS;
|
|
|
|
|
}
|