aboutsummaryrefslogtreecommitdiff
path: root/gdb/NEWS
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2023-11-05 21:02:03 +0000
committerAndrew Burgess <aburgess@redhat.com>2023-12-08 17:52:00 +0000
commit3bf9e166ca76e89a7c8ed95bf8340f4d5e80e143 (patch)
tree6a048e03c755edd1b874627277d1775f1d81d37a /gdb/NEWS
parent1753e2c3f6c7c5b639c816a89ba83bcbe8bebf4e (diff)
downloadbinutils-3bf9e166ca76e89a7c8ed95bf8340f4d5e80e143.zip
binutils-3bf9e166ca76e89a7c8ed95bf8340f4d5e80e143.tar.gz
binutils-3bf9e166ca76e89a7c8ed95bf8340f4d5e80e143.tar.bz2
gdbserver: allow the --debug command line option to take a value
Currently, gdbserver has the following command line options related to debugging output: --debug --remote-debug --event-loop-debug This doesn't scale well. If I want an extra debug component I need to add another command line flag. This commit changes --debug to take a list of components. The currently supported components are: all, threads, remote, and event-loop. The 'threads' component represents the debug we currently get from the --debug option. And if --debug is used without a component list then the threads component is assumed as the default. Currently the threads component actually includes a lot of output that is not really threads related. In the future I'd like to split this up into some new, separate components. But that is not part of this commit, or even this series. The special component 'all' does what you'd expect: enables debug output from all supported components. The component list is parsed left to write, and you can prefix a component with '-' to disable that component, so I can write: target> gdbserver --debug=all,-event-loop to get debug for all components except the event-loop component. I've removed the existing --remote-debug and --event-loop-debug command line options, these are equivalent to --debug=remote and --debug=event-loop respectively, or --debug=remote,event-loop to enable both components. In this commit I've only update the command line options, in the next commit I'll update the monitor commands to support a similar interface. Reviewed-By: Eli Zaretskii <eliz@gnu.org> Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/NEWS')
-rw-r--r--gdb/NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/NEWS b/gdb/NEWS
index 1073e38..94d1fd8 100644
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -38,6 +38,16 @@ set remote thread-options-packet
show remote thread-options-packet
Set/show the use of the thread options packet.
+* New features in the GDB remote stub, GDBserver
+
+ ** The --remote-debug and --event-loop-debug command line options
+ have been removed.
+
+ ** The --debug command line option now takes an optional comma
+ separated list of components to emit debug for. The currently
+ supported components are: all, threads, event-loop, and remote.
+ If no components are given then threads is assumed.
+
* Python API
** New function gdb.notify_mi(NAME, DATA), that emits custom