gdb/
* cli/cli-dump.c: Add 'static' to some cmd_list_element variables. * gnu-nat.c, symfile.c: Likewise.
This commit is contained in:
parent
eeb1f9aea6
commit
28578e6b11
4 changed files with 15 additions and 10 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-08-09 Yao Qi <yao@codesourcery.com>
|
||||
|
||||
* cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
|
||||
* gnu-nat.c, symfile.c: Likewise.
|
||||
|
||||
2012-08-08 Aaron Gamble <agamble@google.com>
|
||||
|
||||
* utils.c (prompt_for_continue_wait_time): New static global.
|
||||
|
|
|
@ -150,13 +150,13 @@ bfd_openw_with_cleanup (const char *filename, const char *target,
|
|||
return obfd;
|
||||
}
|
||||
|
||||
struct cmd_list_element *dump_cmdlist;
|
||||
struct cmd_list_element *append_cmdlist;
|
||||
struct cmd_list_element *srec_cmdlist;
|
||||
struct cmd_list_element *ihex_cmdlist;
|
||||
struct cmd_list_element *tekhex_cmdlist;
|
||||
struct cmd_list_element *binary_dump_cmdlist;
|
||||
struct cmd_list_element *binary_append_cmdlist;
|
||||
static struct cmd_list_element *dump_cmdlist;
|
||||
static struct cmd_list_element *append_cmdlist;
|
||||
static struct cmd_list_element *srec_cmdlist;
|
||||
static struct cmd_list_element *ihex_cmdlist;
|
||||
static struct cmd_list_element *tekhex_cmdlist;
|
||||
static struct cmd_list_element *binary_dump_cmdlist;
|
||||
static struct cmd_list_element *binary_append_cmdlist;
|
||||
|
||||
static void
|
||||
dump_command (char *cmd, int from_tty)
|
||||
|
|
|
@ -2645,8 +2645,8 @@ gnu_target (void)
|
|||
|
||||
/* User task commands. */
|
||||
|
||||
struct cmd_list_element *set_task_cmd_list = 0;
|
||||
struct cmd_list_element *show_task_cmd_list = 0;
|
||||
static struct cmd_list_element *set_task_cmd_list = 0;
|
||||
static struct cmd_list_element *show_task_cmd_list = 0;
|
||||
/* User thread commands. */
|
||||
|
||||
/* Commands with a prefix of `set/show thread'. */
|
||||
|
|
|
@ -3393,7 +3393,7 @@ overlay_load_command (char *args, int from_tty)
|
|||
A place-holder for a mis-typed command. */
|
||||
|
||||
/* Command list chain containing all defined "overlay" subcommands. */
|
||||
struct cmd_list_element *overlaylist;
|
||||
static struct cmd_list_element *overlaylist;
|
||||
|
||||
static void
|
||||
overlay_command (char *args, int from_tty)
|
||||
|
|
Loading…
Reference in a new issue