mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-04-09 21:49:00 +08:00
23 lines
353 B
C
23 lines
353 B
C
#ifndef JOS_INC_SYSCALL_H
|
|
#define JOS_INC_SYSCALL_H
|
|
|
|
/* system call numbers */
|
|
enum {
|
|
SYS_cputs = 0,
|
|
SYS_cgetc,
|
|
SYS_getenvid,
|
|
SYS_env_destroy,
|
|
SYS_page_alloc,
|
|
SYS_page_map,
|
|
SYS_page_unmap,
|
|
SYS_exofork,
|
|
SYS_env_set_status,
|
|
SYS_env_set_pgfault_upcall,
|
|
SYS_yield,
|
|
SYS_ipc_try_send,
|
|
SYS_ipc_recv,
|
|
NSYSCALLS
|
|
};
|
|
|
|
#endif /* !JOS_INC_SYSCALL_H */
|