aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/glibcsyscalls.py
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2023-05-23 10:50:31 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2023-05-23 11:59:23 +0000
commitd13733c166b71ac05056f553f0afdc8a363b2820 (patch)
treed3404db5f0dda5e2bc994a0108806a74d0d144d6 /sysdeps/unix/sysv/linux/glibcsyscalls.py
parent1e9d5987fd94b88bdf4ebfb9f13d4a472d529cdd (diff)
downloadglibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar
glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar.gz
glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar.bz2
glibc-d13733c166b71ac05056f553f0afdc8a363b2820.zip
Fix misspellings in sysdeps/unix -- BZ 25337
Applying this commit results in bit-identical rebuild of libc.so.6 math/libm.so.6 elf/ld-linux-x86-64.so.2 mathvec/libmvec.so.1 Reviewed-by: Florian Weimer <fweimer@redhat.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/glibcsyscalls.py')
-rw-r--r--sysdeps/unix/sysv/linux/glibcsyscalls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/glibcsyscalls.py b/sysdeps/unix/sysv/linux/glibcsyscalls.py
index 0785c2f465..c8e5a6ffca 100644
--- a/sysdeps/unix/sysv/linux/glibcsyscalls.py
+++ b/sysdeps/unix/sysv/linux/glibcsyscalls.py
@@ -32,7 +32,7 @@ def extract_system_call_name(macro):
else:
raise ValueError('invalid system call name: {!r}'.format(macro))
-# Matches macros for systme call names.
+# Matches macros for system call names.
RE_SYSCALL = re.compile('__NR_.*')
# Some __NR_ constants are not real
@@ -54,7 +54,7 @@ def kernel_constants(cc):
return {extract_system_call_name(name) : int(value)
for name, value in glibcextract.compute_macro_consts(
'#include <asm/unistd.h>\n'
- # Regularlize the kernel definitions if necessary.
+ # Regularize the kernel definitions if necessary.
'#include <fixup-asm-unistd.h>',
cc, macro_re=RE_SYSCALL, exclude_re=RE_PSEUDO_SYSCALL)
.items()}