-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsyscall.h
More file actions
executable file
·39 lines (33 loc) · 800 Bytes
/
syscall.h
File metadata and controls
executable file
·39 lines (33 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// System call numbers
#define SYS_fork 1
#define SYS_exit 2
#define SYS_wait 3
#define SYS_pipe 4
#define SYS_read 5
#define SYS_kill 6
#define SYS_exec 7
#define SYS_fstat 8
#define SYS_chdir 9
#define SYS_dup 10
#define SYS_getpid 11
#define SYS_sbrk 12
#define SYS_sleep 13
#define SYS_uptime 14
#define SYS_open 15
#define SYS_write 16
#define SYS_mknod 17
#define SYS_unlink 18
#define SYS_link 19
#define SYS_mkdir 20
#define SYS_close 21
// set environment variable PATH
#define SYS_set_global_path 22
// get history command
#define SYS_history 23
// signal command
#define SYS_signal 24
// set priority
#define SYS_set_prio 25
// yield
#define SYS_sys_yield 26
#define SYS_wait2 27