kern

view src/sched.h @ 73:b4b7198986a6

fixed a potential null dereference when deleting a bug in the redblack tree
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Oct 2011 08:06:10 +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_ */