acadia/zion/scheduler/scheduler.h
Drew Galbraith 960cbf9519 Add Scheduler wireframe.
Right now does nothing but has containing classes for process and thread
information.
2023-05-18 12:43:53 -07:00

24 lines
500 B
C++

#pragma once
#include "scheduler/process.h"
#include "scheduler/thread.h"
namespace sched {
// Create the scheduler object in a disabled state,
// processes can be added but will not be scheduled.
void InitScheduler();
// Enables the scheduler such that processes will yield on ticks.
void EnableScheduler();
void Yield();
// Scheduler will take ownership
// of the created process.
void InsertProcess(Process* proc);
Process& CurrentProcess();
Thread& CurrentThread();
} // namespace sched