kern

diff src/sysnum.h @ 44:7bc74736c7e8

added the first test process code and system call numbers header
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 25 Jul 2011 11:29:57 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/sysnum.h	Mon Jul 25 11:29:57 2011 +0300
     1.3 @@ -0,0 +1,10 @@
     1.4 +#ifndef SYSNUM_H_
     1.5 +#define SYSNUM_H_
     1.6 +
     1.7 +#define SYSCALL_INT		0x80
     1.8 +
     1.9 +#define SYS_EXIT		0
    1.10 +#define SYS_HELLO		1
    1.11 +#define SYS_SLEEP		2
    1.12 +
    1.13 +#endif	/* SYSNUM_H_ */