bringelle/src/core/scheduler.h

10 lines
160 B
C
Raw Normal View History

2021-04-13 15:31:45 +02:00
#ifndef SCHEDULER_H
#define SCHEDULER_H
2021-04-13 18:09:43 +02:00
extern char show_tics;
void clock();
void schedule();
2021-04-14 14:13:44 +02:00
void run_task(int *page_dir, void *task, int task_size);
2021-04-13 15:31:45 +02:00
#endif