Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions kernel/arch/aarch64/syscall/linux_syscalls.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@

namespace syscall::linux_nr {

constexpr uint64_t GETCWD = 17;
constexpr uint64_t FCNTL = 25;
constexpr uint64_t IOCTL = 29;
constexpr uint64_t UNLINKAT = 35;
constexpr uint64_t FTRUNCATE = 46;
constexpr uint64_t CHDIR = 49;
constexpr uint64_t FCHDIR = 50;
constexpr uint64_t OPENAT = 56;
constexpr uint64_t CLOSE = 57;
constexpr uint64_t GETDENTS64 = 61;
Expand Down
3 changes: 3 additions & 0 deletions kernel/arch/x86_64/syscall/linux_syscalls.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ constexpr uint64_t SOCKETPAIR = 53;
constexpr uint64_t EXIT = 60;
constexpr uint64_t FCNTL = 72;
constexpr uint64_t FTRUNCATE = 77;
constexpr uint64_t GETCWD = 79;
constexpr uint64_t CHDIR = 80;
constexpr uint64_t FCHDIR = 81;
constexpr uint64_t ARCH_PRCTL = 158;
constexpr uint64_t GETDENTS64 = 217;
constexpr uint64_t SET_TID_ADDRESS = 218;
Expand Down
Loading