Luna/kernel/src/sys/sched.cpp

24 lines
506 B
C++
Raw Normal View History

#include "memory/VMM.h"
#include "std/errno.h"
#include "sys/UserMemory.h"
2022-09-29 17:17:43 +00:00
#include "thread/Scheduler.h"
void sys_exit(Context* context, int status)
2022-09-29 17:17:43 +00:00
{
Scheduler::task_exit(context, status);
2022-09-29 17:17:43 +00:00
}
void sys_yield(Context* context)
{
context->rax = 0;
Scheduler::task_yield(context);
}
void sys_sleep(Context* context, uint64_t ms)
{
context->rax = 0;
Task* task = Scheduler::current_task();
task->task_sleep = ms;
task->state = task->Sleeping;
Scheduler::task_yield(context);
}