include/cedos/scheduler.h (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*! \file * Manages the distribution of processing time among processes. */ #ifndef SCHEDULER_H #define SCHEDULER_H #include <stdint.h> typedef uint32_t ProcessID; /*! * Executes a task. */ ProcessID sched_exec(void); int sched_init(void); #endif