aboutsummaryrefslogtreecommitdiff
path: root/gdb/NEWS
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2023-11-07 16:46:34 +0000
committerAndrew Burgess <aburgess@redhat.com>2023-12-08 17:52:00 +0000
commit8fd5a6058fc14e1d460fa166457f949e23e50b5f (patch)
treef97c040dfebfe77f659a672373c595d5b3bc83fe /gdb/NEWS
parent3bf9e166ca76e89a7c8ed95bf8340f4d5e80e143 (diff)
downloadfsf-binutils-gdb-8fd5a6058fc14e1d460fa166457f949e23e50b5f.zip
fsf-binutils-gdb-8fd5a6058fc14e1d460fa166457f949e23e50b5f.tar.gz
fsf-binutils-gdb-8fd5a6058fc14e1d460fa166457f949e23e50b5f.tar.bz2
gdbserver: allow for general 'monitor set debug COMPONENT VALUE' use
Building on the last commit, which added a general --debug=COMPONENT option to the gdbserver command line, this commit updates the monitor command to allow for general: (gdb) monitor set debug COMPONENT off|on style commands. Just like with the previous commit, the COMPONENT can be any one of all, threads, remote, event-loop, and correspond to the same set of global debug flags. While on the command line it is possible to do: --debug=remote,event-loop,threads the components have to be entered one at a time with the monitor command. I guess there's no reason why we couldn't allow component grouping within the monitor command, but (to me) what I have here seemed more in the spirit of GDB's existing 'set debug ...' commands. If people want it then we can always add component grouping later. Notice in the above that I use 'off' and 'on' instead of '0' and '1', which is what the 'monitor set debug' command used to use. The 0/1 can still be used, but I now advertise off/on in all the docs and help text, again, this feels more inline with GDB's existing boolean settings. I have removed the two existing monitor commands: monitor set remote-debug 0|1 monitor set event-loop-debug 0|1 These are replaced by: monitor set debug remote off|on monitor set debug event-loop off|on respectively. Approved-By: Tom Tromey <tom@tromey.com> Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Diffstat (limited to 'gdb/NEWS')
-rw-r--r--gdb/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/NEWS b/gdb/NEWS
index 94d1fd8..c8166f0 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -48,6 +48,14 @@ show remote thread-options-packet
supported components are: all, threads, event-loop, and remote.
If no components are given then threads is assumed.
+ ** The 'monitor set remote-debug' and 'monitor set event-loop-debug'
+ command have been removed.
+
+ ** The 'monitor set debug 0|1' command has been extended to take a
+ component name, e.g.: 'monitor set debug COMPONENT off|on'.
+ Possible component names are: all, threads, event-loop, and
+ remote.
+
* Python API
** New function gdb.notify_mi(NAME, DATA), that emits custom