diff options
author | Joseph Myers <joseph@codesourcery.com> | 2021-11-10 15:21:19 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2021-11-10 15:21:19 +0000 |
commit | 3387c40a8bbad5faf85b1feb56429cb20feaa640 (patch) | |
tree | cac2486e0c1b8662f817ef965f3ad92aa3b72c8c /sysdeps/unix/sysv/linux/glibcsyscalls.py | |
parent | 98966749f2b418825ff2ea496a0ee89fe63d2cc8 (diff) | |
download | glibc-3387c40a8bbad5faf85b1feb56429cb20feaa640.tar glibc-3387c40a8bbad5faf85b1feb56429cb20feaa640.tar.gz glibc-3387c40a8bbad5faf85b1feb56429cb20feaa640.tar.bz2 glibc-3387c40a8bbad5faf85b1feb56429cb20feaa640.zip |
Update syscall lists for Linux 5.15
Linux 5.15 has one new syscall, process_mrelease (and also enables the
clone3 syscall for RV32). It also has a macro __NR_SYSCALL_MASK for
Arm, which is not a syscall but matches the pattern used for syscall
macro names.
Add __NR_SYSCALL_MASK to the names filtered out in the code dealing
with syscall lists, update syscall-names.list for the new syscall and
regenerate the arch-syscall.h headers with build-many-glibcs.py
update-syscalls.
Tested with build-many-glibcs.py.
Diffstat (limited to 'sysdeps/unix/sysv/linux/glibcsyscalls.py')
-rw-r--r-- | sysdeps/unix/sysv/linux/glibcsyscalls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/glibcsyscalls.py b/sysdeps/unix/sysv/linux/glibcsyscalls.py index 621a202ed7..fe7896eebe 100644 --- a/sysdeps/unix/sysv/linux/glibcsyscalls.py +++ b/sysdeps/unix/sysv/linux/glibcsyscalls.py @@ -41,7 +41,7 @@ RE_PSEUDO_SYSCALL = re.compile(r"""__NR_( (unused|reserved)[0-9]+ # Pseudo-system call which describes a range. - |(syscalls|arch_specific_syscall|(OABI_)?SYSCALL_BASE) + |(syscalls|arch_specific_syscall|(OABI_)?SYSCALL_BASE|SYSCALL_MASK) |(|64_|[NO]32_)Linux(_syscalls)? )""", re.X) |