kern

view src/syscall.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 5b29b15c5412
children
line source
1 #ifndef SYSCALL_H_
2 #define SYSCALL_H_
4 #define KDEF_SYSCALL_H
5 #include "kdef.h"
7 #ifndef ASM
8 void init_syscall(void);
9 #endif
11 #endif /* SYSCALL_H_ */