diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-22 13:43:25 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2021-10-28 10:44:18 -0400 |
commit | f54bdb6d2799c658e076f10e42222949dc51032d (patch) | |
tree | bd9804255bf472e93740a8b47b2f90d5bde939c3 /gdb/serial.c | |
parent | 5ad2694b1ebe123ea92fcee094a69bcdc9769985 (diff) | |
download | fsf-binutils-gdb-f54bdb6d2799c658e076f10e42222949dc51032d.zip fsf-binutils-gdb-f54bdb6d2799c658e076f10e42222949dc51032d.tar.gz fsf-binutils-gdb-f54bdb6d2799c658e076f10e42222949dc51032d.tar.bz2 |
gdb: add add_setshow_prefix_cmd
There's a common pattern to call add_basic_prefix_cmd and
add_show_prefix_cmd to add matching set and show commands. Add the
add_setshow_prefix_cmd function to factor that out and use it at a few
places.
Change-Id: I6e9e90a30e9efb7b255bf839cac27b85d7069cfd
Diffstat (limited to 'gdb/serial.c')
-rw-r--r-- | gdb/serial.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/gdb/serial.c b/gdb/serial.c index 5ec79a1..f85455d 100644 --- a/gdb/serial.c +++ b/gdb/serial.c @@ -669,17 +669,11 @@ Connect the terminal directly up to the command monitor.\n\ Use <CR>~. or <CR>~^D to break out.")); #endif /* 0 */ - add_basic_prefix_cmd ("serial", class_maintenance, _("\ -Set default serial/parallel port configuration."), - &serial_set_cmdlist, - 0/*allow-unknown*/, - &setlist); - - add_show_prefix_cmd ("serial", class_maintenance, _("\ -Show default serial/parallel port configuration."), - &serial_show_cmdlist, - 0/*allow-unknown*/, - &showlist); + add_setshow_prefix_cmd ("serial", class_maintenance, + _("Set default serial/parallel port configuration."), + _("Show default serial/parallel port configuration."), + &serial_set_cmdlist, &serial_show_cmdlist, + &setlist, &showlist); /* If target is open when baud changes, it doesn't take effect until the next open (I think, not sure). */ |