gdb/
authorYao Qi <yao@codesourcery.com>
Thu, 9 Aug 2012 06:26:25 +0000 (06:26 +0000)
committerYao Qi <yao@codesourcery.com>
Thu, 9 Aug 2012 06:26:25 +0000 (06:26 +0000)
* cli/cli-dump.c: Add 'static' to some cmd_list_element variables.
* gnu-nat.c, symfile.c: Likewise.

gdb/ChangeLog
gdb/cli/cli-dump.c
gdb/gnu-nat.c
gdb/symfile.c

index 68638f9686bc4f8210a456cf2b69be13dacc607b..9f6b0628c251fa94bd698d077771933cdc0811ff 100644 (file)
@@ -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.
index 7341f0029ef8dcd896bd98fe7cf3985ac3cc02b7..dd9c3b86009fb4bb06e0e49ecb12d01b46f27107 100644 (file)
@@ -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)
index 5a653cf085a010bd102b1cc802b16cefbf298f69..2ca01e17fc06d9bb710469f465fc0f51d291489f 100644 (file)
@@ -2645,8 +2645,8 @@ gnu_target (void)
 \f
 /* 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'.  */
index 95ed480ff640838e24e78e25a674c87feca1bd87..da068a1b80935ab69790d60ffe882691185dfaaf 100644 (file)
@@ -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)