gdb/
* cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): New. Update comment to add_setshow_integer_cmd. * cli/cli-setshow.c (do_set_command): Handle case 'var_zuinteger_unlimited'. (do_show_command): Likewise. * cli/cli-cmds.c (init_cmds): Call add_setshow_zuinteger_unlimited_cmd for command 'remotetimeout'. * command.h (enum var_types): New zuinteger_unlimited. Update comment to var_integer. * source.c (_initialize_source): Call add_setshow_zuinteger_unlimited_cmd for command 'set listsize'. gdb/doc/ * gdb.texinfo (List): Describe the meaning of 0 and -1 in 'set listsize'. gdb/testsuite/ * gdb.base/list.exp (set_listsize): Don't set arg to "unlimited" when it is less than 0.
This commit is contained in:
parent
6acef6cd7b
commit
6fc1c7733e
10 changed files with 103 additions and 12 deletions
|
@ -1826,14 +1826,15 @@ is displayed."),
|
|||
show_remote_debug,
|
||||
&setdebuglist, &showdebuglist);
|
||||
|
||||
add_setshow_integer_cmd ("remotetimeout", no_class, &remote_timeout, _("\
|
||||
add_setshow_zuinteger_unlimited_cmd ("remotetimeout", no_class,
|
||||
&remote_timeout, _("\
|
||||
Set timeout limit to wait for target to respond."), _("\
|
||||
Show timeout limit to wait for target to respond."), _("\
|
||||
This value is used to set the time limit for gdb to wait for a response\n\
|
||||
from the target."),
|
||||
NULL,
|
||||
show_remote_timeout,
|
||||
&setlist, &showlist);
|
||||
NULL,
|
||||
show_remote_timeout,
|
||||
&setlist, &showlist);
|
||||
|
||||
add_prefix_cmd ("debug", no_class, set_debug,
|
||||
_("Generic command for setting gdb debugging flags"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue