xv6-cs450/syscall.h

16 lines
306 B
C
Raw Normal View History

2006-06-15 18:02:20 +02:00
#define SYS_fork 1
#define SYS_exit 2
2006-06-15 21:58:01 +02:00
#define SYS_wait 3
2006-06-26 17:11:19 +02:00
#define SYS_cons_putc 4
2006-06-27 16:35:53 +02:00
#define SYS_pipe 5
#define SYS_write 6
#define SYS_read 7
#define SYS_close 8
#define SYS_block 9
#define SYS_kill 10
#define SYS_panic 11
#define SYS_cons_puts 12
2006-07-27 23:10:00 +02:00
#define SYS_exec 13
2006-07-29 11:35:02 +02:00
#define SYS_open 14
2006-08-08 20:07:37 +02:00
#define SYS_mknod 15