kern

diff src/klibc/errno.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 f44bec97a0ec
children
line diff
     1.1 --- a/src/klibc/errno.h	Thu Oct 13 05:22:35 2011 +0300
     1.2 +++ b/src/klibc/errno.h	Sat Oct 15 07:45:56 2011 +0300
     1.3 @@ -1,6 +1,9 @@
     1.4  #ifndef ERRNO_H_
     1.5  #define ERRNO_H_
     1.6  
     1.7 -#define EAGAIN		1
     1.8 +/* all kernel-definitions that should be shared with user space
     1.9 + * are in include/kdef.h
    1.10 + */
    1.11 +#include "kdef.h"
    1.12  
    1.13  #endif	/* ERRNO_H_ */