13 lines
250 B
C
13 lines
250 B
C
/*
|
|
* @author xamidev <xamidev@riseup.net>
|
|
* @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 |