kern

view src/sched.h @ 98:921a264297a4

merged the filesystem stuff
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 17 Apr 2014 17:03:30 +0300
parents 88a6c4e192f9
children
line source
1 #ifndef SCHED_H_
2 #define SCHED_H_
4 #include "proc.h"
6 void schedule(void);
8 void add_proc(int pid);
9 void remove_proc(int pid);
11 void wait(void *wait_addr);
12 void wakeup(void *wait_addr);
14 #endif /* SCHED_H_ */