diff options
author | Joel Brobecker <brobecker@gnat.com> | 2013-10-10 05:50:20 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2013-10-10 05:50:20 +0000 |
commit | 0d12017b317fe5dcbf51bca928de185b7b470735 (patch) | |
tree | 99f124d0b620a9fe90750a56b0f851b677c327c3 /gdb/cli | |
parent | 3fd49075359dc1d8957d6760b2cb576c6416157d (diff) | |
download | gdb-0d12017b317fe5dcbf51bca928de185b7b470735.zip gdb-0d12017b317fe5dcbf51bca928de185b7b470735.tar.gz gdb-0d12017b317fe5dcbf51bca928de185b7b470735.tar.bz2 |
Rename "set/show remotebaud" command into "set/show serial baud"
This patch renames the "set/show remotebaud" commands into
"set/show serial baud", and moves its implementation into serial.c.
It also moves the "baud_rate" global from top.c to serial.c, where
the new code is being added (the alternative was to add an include
of target.h).
And to facilitate the transition to the new setting name, this
patch also preserves the old commands, and marks them as deprecated
to alert the users of the change.
gdb/ChangeLog:
* cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
serial_baud_show_cmd.
(_initialize_cli_cmds): Delete the code creating the
"set/show remotebaud" commands.
* serial.c (baud_rate): Move here from top.c.
(serial_baud_show_cmd): Move here from cli/cli-cmds.c.
(_initialize_serial): Create "set/show serial baud" commands.
Add "set/show remotebaud" command aliases.
* top.c (baud_rate): Moved to serial.c.
* NEWS: Document the new "set/show serial baud" commands,
replacing "set/show remotebaud".
gdb/doc/ChangeLog:
* gdb.texinfo: Replace "set remotebaud" and "show remotebaud"
by "set serial baud" and "show serial baud" (resp) throughout.
Diffstat (limited to 'gdb/cli')
-rw-r--r-- | gdb/cli/cli-cmds.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c index 886ba7a..460b719 100644 --- a/gdb/cli/cli-cmds.c +++ b/gdb/cli/cli-cmds.c @@ -1582,14 +1582,6 @@ show_history_expansion_p (struct ui_file *file, int from_tty, } static void -show_baud_rate (struct ui_file *file, int from_tty, - struct cmd_list_element *c, const char *value) -{ - fprintf_filtered (file, _("Baud rate for remote serial I/O is %s.\n"), - value); -} - -static void show_remote_debug (struct ui_file *file, int from_tty, struct cmd_list_element *c, const char *value) { @@ -1748,17 +1740,6 @@ the previous command number shown."), add_cmd ("configuration", no_set_class, show_configuration, _("Show how GDB was configured at build time."), &showlist); - /* If target is open when baud changes, it doesn't take effect until - the next open (I think, not sure). */ - add_setshow_zinteger_cmd ("remotebaud", no_class, &baud_rate, _("\ -Set baud rate for remote serial I/O."), _("\ -Show baud rate for remote serial I/O."), _("\ -This value is used to set the speed of the serial port when debugging\n\ -using remote targets."), - NULL, - show_baud_rate, - &setlist, &showlist); - add_setshow_zinteger_cmd ("remote", no_class, &remote_debug, _("\ Set debugging of remote protocol."), _("\ Show debugging of remote protocol."), _("\ |