gdbserver: add missing --disable-packet options to help text
authorAndrew Burgess <andrew.burgess@embecosm.com>
Tue, 10 Nov 2020 17:54:05 +0000 (17:54 +0000)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Wed, 11 Nov 2020 09:08:31 +0000 (09:08 +0000)
The help text for the --disable-packet option was missing one of the
possible values.

As this option is for maintainers only it is explicitly not documented
in gdb/doc/gdb.texinfo, so no update is needed there.

gdbserver/ChangeLog:

* server.cc (gdbserver_usage): Add missing option to usage text.
(gdbserver_show_disableable): Likewise.

gdbserver/ChangeLog
gdbserver/server.cc

index 247b5e3d1d8cd0438d059796dce4320df901339d..700da6ef871489e79280d2f90f0154bfbe1c4710 100644 (file)
@@ -1,3 +1,8 @@
+2020-11-11  Andrew Burgess  <andrew.burgess@embecosm.com>
+
+       * server.cc (gdbserver_usage): Add missing option to usage text.
+       (gdbserver_show_disableable): Likewise.
+
 2020-11-02  Simon Marchi  <simon.marchi@efficios.com>
 
        * ax.cc: Fix indentation.
index 95db9807a9aa8b16cf0b9ee1e2e29f13e0834666..321d90378b3df5310933ae76319fcf47837a652c 100644 (file)
@@ -3380,7 +3380,7 @@ gdbserver_usage (FILE *stream)
           "  --disable-packet=OPT1[,OPT2,...]\n"
           "                        Disable support for RSP packets or features.\n"
           "                          Options:\n"
-          "                            vCont, Tthread, qC, qfThreadInfo and \n"
+          "                            vCont, T, Tthread, qC, qfThreadInfo and \n"
           "                            threads (disable all threading packets).\n"
           "\n"
           "For more information, consult the GDB manual (available as on-line \n"
@@ -3398,7 +3398,8 @@ gdbserver_show_disableable (FILE *stream)
           "  qfThreadInfo\tThread listing\n"
           "  Tthread     \tPassing the thread specifier in the "
           "T stop reply packet\n"
-          "  threads     \tAll of the above\n");
+          "  threads     \tAll of the above\n"
+          "  T           \tAll 'T' packets\n");
 }
 
 /* Start up the event loop.  This is the entry point to the event
This page took 0.033594 seconds and 4 git commands to generate.