kern

diff include/kdef.h @ 93:083849df660b

split the system call implementations out of fs.c into fs_sys.c
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 11 Dec 2011 10:17:58 +0200
parents 7ff2b4971216
children b3351d018ac6
line diff
     1.1 --- a/include/kdef.h	Fri Dec 09 15:29:54 2011 +0200
     1.2 +++ b/include/kdef.h	Sun Dec 11 10:17:58 2011 +0200
     1.3 @@ -32,8 +32,11 @@
     1.4  #define EAGAIN		1
     1.5  #define EINVAL		2
     1.6  #define ECHILD		3
     1.7 +#define EBUSY		4
     1.8 +#define ENOMEM		5
     1.9 +#define EIO			6
    1.10  
    1.11 -#define EBUG		255	/* not implemented yet */
    1.12 +#define EBUG		127	/* error: feature not implemented yet */
    1.13  #endif	/* errno.h */
    1.14  
    1.15