diff options
author | Andrew Burgess <aburgess@redhat.com> | 2023-01-18 12:09:05 +0000 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2024-03-25 17:25:07 +0000 |
commit | 7879fba359f185d674d4e981af4f23a066bfe644 (patch) | |
tree | 0af3ef8dc583254d494f6c939ec400010eacb16b /gdb/NEWS | |
parent | fe67b24240d7a679904c5bef3a7e911a09ea7739 (diff) | |
download | fsf-binutils-gdb-7879fba359f185d674d4e981af4f23a066bfe644.zip fsf-binutils-gdb-7879fba359f185d674d4e981af4f23a066bfe644.tar.gz fsf-binutils-gdb-7879fba359f185d674d4e981af4f23a066bfe644.tar.bz2 |
gdb: rename unwindonsignal to unwind-on-signal
We now have unwind-on-timeout and unwind-on-terminating-exception, and
then the odd one out unwindonsignal.
I'm not a great fan of these squashed together command names, so in
this commit I propose renaming this to unwind-on-signal.
Obviously I've added the hidden alias unwindonsignal so any existing
GDB scripts will keep working.
There's one test that I've extended to test the alias works, but in
most of the other test scripts I've changed over to use the new name.
The docs are updated to reference the new name.
Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Tested-By: Luis Machado <luis.machado@arm.com>
Tested-By: Keith Seitz <keiths@redhat.com>
Diffstat (limited to 'gdb/NEWS')
-rw-r--r-- | gdb/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -32,6 +32,10 @@ maintenance info line-table if the line is considered the start of the epilgoue, and thus a point at which the frame can be considered destroyed. +set unwindonsignal on|off +show unwindonsignal + These commands are now aliases for the new set/show unwind-on-signal. + * New commands info missing-debug-handler @@ -81,6 +85,11 @@ show unwind-on-timeout dummy frame that was added for the inferior call, and restoring the inferior state to how it was before the inferior call started. +set unwind-on-signal on|off +show unwind-on-signal + These new commands replaces the existing set/show unwindonsignal. The + old command is maintained as an alias. + * New features in the GDB remote stub, GDBserver ** The --remote-debug and --event-loop-debug command line options |