/* * @author xamidev * @brief Round-robin scheduler * @license GPL-3.0-only */ #ifndef SCHEDULER_H #define SCHEDULER_H struct cpu_status_t* scheduler_schedule(struct cpu_status_t* context); void scheduler_init(); #endif