Skip to content

Commit

Permalink
Sync syscall list.
Browse files Browse the repository at this point in the history
  • Loading branch information
khuey committed Dec 9, 2024
1 parent 58da39a commit 386a6bf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/syscalls.py
Original file line number Diff line number Diff line change
Expand Up @@ -1749,6 +1749,16 @@ def __init__(self, **kwargs):
futex_wake = UnsupportedSyscall(all=454)
futex_wait = UnsupportedSyscall(all=455)
futex_requeue = UnsupportedSyscall(all=456)
statmount = UnsupportedSyscall(all=457)
listmount = UnsupportedSyscall(all=458)
lsm_get_self_attr = UnsupportedSyscall(all=459)
lsm_set_self_attr = UnsupportedSyscall(all=460)
lsm_list_modules = UnsupportedSyscall(all=461)
mseal = UnsupportedSyscall(all=462)
setxattrat = UnsupportedSyscall(all=463)
getxattrat = UnsupportedSyscall(all=464)
listxattrat = UnsupportedSyscall(all=465)
removexattrat = UnsupportedSyscall(all=466)

# restart_syscall is a little special.
restart_syscall = RestartSyscall(x86=0, x64=219, generic=128)
Expand Down

0 comments on commit 386a6bf

Please sign in to comment.