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/doc | |
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/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 5141b3c..21b2a28 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2013-10-10 Joel Brobecker <brobecker@adacore.com> + + * gdb.texinfo: Replace "set remotebaud" and "show remotebaud" + by "set serial baud" and "show serial baud" (resp) throughout. + 2013-10-07 Pedro Alves <palves@redhat.com> PR breakpoints/11568 diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index e196658..bda2e7b 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -18024,8 +18024,8 @@ target remote /dev/ttyb @end smallexample If you're using a serial line, you may want to give @value{GDBN} the -@w{@samp{--baud}} option, or use the @code{set remotebaud} command -(@pxref{Remote Configuration, set remotebaud}) before the +@w{@samp{--baud}} option, or use the @code{set serial baud} command +(@pxref{Remote Configuration, set serial baud}) before the @code{target} command. @item target remote @code{@var{host}:@var{port}} @@ -18567,13 +18567,13 @@ default value is the number of bits in the target's address. @item show remoteaddresssize Show the current value of remote address size in bits. -@item set remotebaud @var{n} +@item set serial baud @var{n} @cindex baud rate for remote targets Set the baud rate for the remote serial I/O to @var{n} baud. The value is used to set the speed of the serial port used for debugging remote targets. -@item show remotebaud +@item show serial baud Show the current speed of the remote connection. @item set remotebreak |