diff options
| author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-23 10:50:31 +0000 |
|---|---|---|
| committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-23 11:59:23 +0000 |
| commit | d13733c166b71ac05056f553f0afdc8a363b2820 (patch) | |
| tree | d3404db5f0dda5e2bc994a0108806a74d0d144d6 | |
| parent | 1e9d5987fd94b88bdf4ebfb9f13d4a472d529cdd (diff) | |
| download | glibc-d13733c166b71ac05056f553f0afdc8a363b2820.tar.xz 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>
69 files changed, 87 insertions, 87 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h b/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h index 1c2357a021..473f3621a7 100644 --- a/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h +++ b/sysdeps/unix/sysv/linux/aarch64/ucontext-internal.h @@ -20,7 +20,7 @@ #define SP_ALIGN_MASK ~15 -/* Size of an X regiser in bytes. */ +/* Size of an X register in bytes. */ #define SZREG 8 /* Size of a V register in bytes. */ diff --git a/sysdeps/unix/sysv/linux/alpha/getcontext.S b/sysdeps/unix/sysv/linux/alpha/getcontext.S index 3ce7f8fa87..0bfe25a8af 100644 --- a/sysdeps/unix/sysv/linux/alpha/getcontext.S +++ b/sysdeps/unix/sysv/linux/alpha/getcontext.S @@ -44,7 +44,7 @@ weak_alias (__getcontext, getcontext) /* An internal routine used by getcontext and setcontext. - The incomming return address register is $0. */ + The incoming return address register is $0. */ .align 4 .globl __getcontext_x diff --git a/sysdeps/unix/sysv/linux/alpha/ioperm.c b/sysdeps/unix/sysv/linux/alpha/ioperm.c index b026cc8261..6fac2bb516 100644 --- a/sysdeps/unix/sysv/linux/alpha/ioperm.c +++ b/sysdeps/unix/sysv/linux/alpha/ioperm.c @@ -95,7 +95,7 @@ asm(".arch ev56"); #define TSUNAMI_DENSE_MEM (0x80000000000UL) /* Polaris has SPARSE space, but we prefer to use only DENSE - because of some idiosyncracies in actually using SPARSE. */ + because of some idiosyncrasies in actually using SPARSE. */ #define POLARIS_IO_BASE (0xf9fc000000UL) #define POLARIS_DENSE_MEM (0xf900000000UL) diff --git a/sysdeps/unix/sysv/linux/arc/bits/procfs.h b/sysdeps/unix/sysv/linux/arc/bits/procfs.h index 35cdc5621c..1ec0b1cd59 100644 --- a/sysdeps/unix/sysv/linux/arc/bits/procfs.h +++ b/sysdeps/unix/sysv/linux/arc/bits/procfs.h @@ -31,5 +31,5 @@ typedef unsigned long int elf_greg_t; typedef unsigned long int elf_gregset_t[ELF_NGREG]; -/* There's no seperate floating point reg file in ARCv2. */ +/* There's no separate floating point reg file in ARCv2. */ typedef struct { } elf_fpregset_t; diff --git a/sysdeps/unix/sysv/linux/arc/clone.S b/sysdeps/unix/sysv/linux/arc/clone.S index 0029aaeb81..d8c7b93d1c 100644 --- a/sysdeps/unix/sysv/linux/arc/clone.S +++ b/sysdeps/unix/sysv/linux/arc/clone.S @@ -43,7 +43,7 @@ ENTRY (__clone) bz L (__sys_err) /* save some of the orig args - r0 containg @fn will be clobbered AFTER syscall (with ret val) + r0 containing @fn will be clobbered AFTER syscall (with ret val) rest are clobbered BEFORE syscall due to different arg ordering. */ mov r10, r0 /* @fn. */ mov r11, r3 /* @args. */ diff --git a/sysdeps/unix/sysv/linux/arc/sysdep.h b/sysdeps/unix/sysv/linux/arc/sysdep.h index 88dc1dff01..7f90d64124 100644 --- a/sysdeps/unix/sysv/linux/arc/sysdep.h +++ b/sysdeps/unix/sysv/linux/arc/sysdep.h @@ -182,11 +182,11 @@ hidden_proto (__syscall_error) __ret = (long int) (arg1); \ LOAD_ARGS_0 (nm, arg1) -/* Note that the use of _tmpX might look superflous, however it is needed +/* Note that the use of _tmpX might look superfluous, however it is needed to ensure that register variables are not clobbered if arg happens to be a function call itself. e.g. sched_setaffinity() calling getpid() for arg2 Also this specific order of recursive calling is important to segregate - the tmp args evaluation (function call case described above) and assigment + the tmp args evaluation (function call case described above) and assignment of register variables. */ # define LOAD_ARGS_2(nm, arg1, arg2) \ diff --git a/sysdeps/unix/sysv/linux/arch-fork.h b/sysdeps/unix/sysv/linux/arch-fork.h index 84e5ef5a7f..0e0eccbf38 100644 --- a/sysdeps/unix/sysv/linux/arch-fork.h +++ b/sysdeps/unix/sysv/linux/arch-fork.h @@ -28,7 +28,7 @@ to store the child thread ID at its locationm, to erase it in child memory when the child exits, and do a wakeup on the futex at that address. - The architecture with non-default kernel abi semantic should correctlly + The architecture with non-default kernel abi semantic should correctly override it with one of the supported calling convention (check generic kernel-features.h for the clone abi variants). */ static inline pid_t diff --git a/sysdeps/unix/sysv/linux/bits/local_lim.h b/sysdeps/unix/sysv/linux/bits/local_lim.h index 54eb959ee2..978515dc37 100644 --- a/sysdeps/unix/sysv/linux/bits/local_lim.h +++ b/sysdeps/unix/sysv/linux/bits/local_lim.h @@ -73,7 +73,7 @@ /* We have no predefined limit on the number of threads. */ #undef PTHREAD_THREADS_MAX -/* Maximum amount by which a process can descrease its asynchronous I/O +/* Maximum amount by which a process can decrease its asynchronous I/O priority level. */ #define AIO_PRIO_DELTA_MAX 20 diff --git a/sysdeps/unix/sysv/linux/bits/mman-linux.h b/sysdeps/unix/sysv/linux/bits/mman-linux.h index 6771f07a0f..f654b4f824 100644 --- a/sysdeps/unix/sysv/linux/bits/mman-linux.h +++ b/sysdeps/unix/sysv/linux/bits/mman-linux.h @@ -78,7 +78,7 @@ # define MADV_UNMERGEABLE 13 /* KSM may not merge identical pa |
