diff options
author | Tom de Vries <tdevries@suse.de> | 2024-10-06 07:59:48 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2024-10-06 07:59:48 +0200 |
commit | 8f6606b6e3b568f6bbd3e2f0936eefb489e82a15 (patch) | |
tree | 17cbe5f6ae7a58b9ae24ab6c2727ca68477ef2b2 /gdb/solib-svr4.c | |
parent | 67eca1ccc1ad5237403dc151eb91f5e506dea0c4 (diff) | |
download | binutils-8f6606b6e3b568f6bbd3e2f0936eefb489e82a15.zip binutils-8f6606b6e3b568f6bbd3e2f0936eefb489e82a15.tar.gz binutils-8f6606b6e3b568f6bbd3e2f0936eefb489e82a15.tar.bz2 |
[gdb] Fix common misspellings
Fix the following common misspellings:
...
accidently -> accidentally
additonal -> additional
addresing -> addressing
adress -> address
agaisnt -> against
albiet -> albeit
arbitary -> arbitrary
artifical -> artificial
auxillary -> auxiliary
auxilliary -> auxiliary
bcak -> back
begining -> beginning
cannonical -> canonical
compatiblity -> compatibility
completetion -> completion
diferent -> different
emited -> emitted
emiting -> emitting
emmitted -> emitted
everytime -> every time
excercise -> exercise
existance -> existence
fucntion -> function
funtion -> function
guarentee -> guarantee
htis -> this
immediatly -> immediately
layed -> laid
noone -> no one
occurances -> occurrences
occured -> occurred
originaly -> originally
preceeded -> preceded
preceeds -> precedes
propogate -> propagate
publically -> publicly
refering -> referring
substract -> subtract
substracting -> subtracting
substraction -> subtraction
taht -> that
targetting -> targeting
teh -> the
thier -> their
thru -> through
transfered -> transferred
transfering -> transferring
upto -> up to
vincinity -> vicinity
whcih -> which
whereever -> wherever
wierd -> weird
withing -> within
writen -> written
wtih -> with
doesnt -> doesn't
...
Tested on x86_64-linux.
Diffstat (limited to 'gdb/solib-svr4.c')
-rw-r--r-- | gdb/solib-svr4.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c index 928d654..7999a8e 100644 --- a/gdb/solib-svr4.c +++ b/gdb/solib-svr4.c @@ -619,7 +619,7 @@ find_program_interpreter (void) /* Scan for DESIRED_DYNTAG in .dynamic section of the target's main executable, - found by consulting the OS auxillary vector. If DESIRED_DYNTAG is found, 1 + found by consulting the OS auxiliary vector. If DESIRED_DYNTAG is found, 1 is returned and the corresponding PTR is set. */ static int @@ -2355,7 +2355,7 @@ enable_break (struct svr4_info *info, int from_tty) } /* If we were not able to find the base address of the loader - from our so_list, then try using the AT_BASE auxilliary entry. */ + from our so_list, then try using the AT_BASE auxiliary entry. */ if (!load_addr_found) if (target_auxv_search (AT_BASE, &load_addr) > 0) { @@ -2616,8 +2616,8 @@ svr4_exec_displacement (CORE_ADDR *displacementp) return 0; } - /* Verify that the auxilliary vector describes the same file as exec_bfd, by - comparing their program headers. If the program headers in the auxilliary + /* Verify that the auxiliary vector describes the same file as exec_bfd, by + comparing their program headers. If the program headers in the auxiliary vector do not match the program headers in the executable, then we are looking at a different file than the one used by the kernel - for instance, "gdb program" connected to "gdbserver :PORT ld.so program". */ |