kern
diff src/sched.h @ 51:b1e8c8251884
lalalala
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Mon, 01 Aug 2011 06:45:29 +0300 |
parents | |
children | 88a6c4e192f9 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/sched.h Mon Aug 01 06:45:29 2011 +0300 1.3 @@ -0,0 +1,12 @@ 1.4 +#ifndef SCHED_H_ 1.5 +#define SCHED_H_ 1.6 + 1.7 +#include "proc.h" 1.8 + 1.9 +void schedule(void); 1.10 + 1.11 +int add_proc(int pid, enum proc_state state); 1.12 +int block_proc(int pid); 1.13 +int unblock_proc(int pid); 1.14 + 1.15 +#endif /* SCHED_H_ */