Browse Source

gdb: fix regression in gdb_port command

The gdb_port command can be invoked during normal execution
to report the port used for gdb, whereas it was listed as
CONFIG stage only, which caused an error when excuting
it to return the reported error.

Also in line with the grander goal of making more commands
available during all "modes" (perhaps retiring config mode),
there is no particular reason to limit gdb_port to the
config stage.

Regression was introduced in:

b3bf1d12b2 aka
v0.4.0-rc1-32-gb3bf1d1

Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
tags/v0.4.0-rc2
Øyvind Harboe 14 years ago
parent
commit
95f86e8e05
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      src/server/gdb_server.c

+ 3
- 2
src/server/gdb_server.c View File

@@ -2421,8 +2421,9 @@ static const struct command_registration gdb_command_handlers[] = {
{
.name = "gdb_port",
.handler = &handle_gdb_port_command,
.mode = COMMAND_CONFIG,
.help = "daemon configuration command gdb_port",
.mode = COMMAND_ANY,
.help = "daemon configuration command gdb_port. No arguments reports "
"GDB port.",
.usage = "<port>",
},
{


Loading…
Cancel
Save