21 lines
633 B
Rust
21 lines
633 B
Rust
pub const SYS_EX_DEBUG_TRACE: usize = 128;
|
|
pub const SYS_EX_NANOSLEEP: usize = 129;
|
|
|
|
pub const SYS_EX_SIGNAL: usize = 130;
|
|
pub const SYS_EX_SIGRETURN: usize = 131;
|
|
pub const SYS_EX_KILL: usize = 132;
|
|
pub const SYS_EX_CLONE: usize = 133;
|
|
pub const SYS_EX_YIELD: usize = 134;
|
|
|
|
pub const SYS_EXIT: usize = 1;
|
|
pub const SYS_READ: usize = 2;
|
|
pub const SYS_WRITE: usize = 3;
|
|
pub const SYS_OPENAT: usize = 4;
|
|
pub const SYS_FSTATAT: usize = 5;
|
|
pub const SYS_CLOSE: usize = 6;
|
|
pub const SYS_FORK: usize = 7;
|
|
pub const SYS_EXECVE: usize = 8;
|
|
pub const SYS_WAITPID: usize = 9;
|
|
pub const SYS_IOCTL: usize = 10;
|
|
pub const SYS_SELECT: usize = 11;
|