kern

diff src/sched.h @ 72:3941e82b07f2

- implemented syscalls: exit, waitpid, getppid - moved sys_whatever functions out of syscall.c into more reasonable files - putting all the definitions that must be synced with userland to include/kdef.h
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 15 Oct 2011 07:45:56 +0300
parents 88a6c4e192f9
children
line diff
     1.1 --- a/src/sched.h	Thu Oct 13 05:22:35 2011 +0300
     1.2 +++ b/src/sched.h	Sat Oct 15 07:45:56 2011 +0300
     1.3 @@ -6,6 +6,7 @@
     1.4  void schedule(void);
     1.5  
     1.6  void add_proc(int pid);
     1.7 +void remove_proc(int pid);
     1.8  
     1.9  void wait(void *wait_addr);
    1.10  void wakeup(void *wait_addr);