* remote-mips.c (_initialize_remote_mips): Added "timeout" and
"retransmit-timeout" variables to set mips_receive_wait and mips_retransmit_wait, respectively.
This commit is contained in:
parent
ffff16b39c
commit
0907dc0932
2 changed files with 21 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Jul 28 08:26:58 1993 Ian Lance Taylor (ian@cygnus.com)
|
||||
|
||||
* remote-mips.c (_initialize_remote_mips): Added "timeout" and
|
||||
"retransmit-timeout" variables to set mips_receive_wait and
|
||||
mips_retransmit_wait, respectively.
|
||||
|
||||
Wed Jul 28 03:58:58 1993 (pes@regent.e-technik.tu-muenchen.de)
|
||||
|
||||
* symmisc.c (dump_msymbols): Handle new mst_file_* types.
|
||||
|
|
|
@ -1322,6 +1322,21 @@ _initialize_remote_mips ()
|
|||
{
|
||||
add_target (&mips_ops);
|
||||
|
||||
add_show_from_set (
|
||||
add_set_cmd ("timeout", no_class, var_zinteger,
|
||||
(char *) &mips_receive_wait,
|
||||
"Set timeout in seconds for remote MIPS serial I/O.",
|
||||
&setlist),
|
||||
&showlist);
|
||||
|
||||
add_show_from_set (
|
||||
add_set_cmd ("retransmit-timeout", no_class, var_zinteger,
|
||||
(char *) &mips_retransmit_wait,
|
||||
"Set retransmit timeout in seconds for remote MIPS serial I/O.\n\
|
||||
This is the number of seconds to wait for an acknowledgement to a packet\n\
|
||||
before resending the packet.", &setlist),
|
||||
&showlist);
|
||||
|
||||
add_show_from_set (
|
||||
add_set_cmd ("remotedebug", no_class, var_zinteger, (char *) &mips_debug,
|
||||
"Set debugging of remote MIPS serial I/O.\n\
|
||||
|
|
Loading…
Reference in a new issue