gdb/
authorYao Qi <yao@codesourcery.com>
Tue, 31 Jul 2012 07:12:28 +0000 (07:12 +0000)
committerYao Qi <yao@codesourcery.com>
Tue, 31 Jul 2012 07:12:28 +0000 (07:12 +0000)
* tracepoint.c: Add 'static' for some variables.

gdb/ChangeLog
gdb/tracepoint.c

index 661a0d6baa78cacdc39b17850a0b525b789cc710..5c35d3646b21fa430ad4cb5b5ab63be3d4619455 100644 (file)
@@ -1,3 +1,7 @@
+2012-07-31  Yao Qi  <yao@codesourcery.com>
+
+       * tracepoint.c: Add 'static' for some variables.
+
 2012-07-31  Yao Qi  <yao@codesourcery.com>
 
        * go32-nat.c: Declare _initialize_go32_nat.
index 8060971e3163fb202780c3bf28030651f6310468..e729d6da6429e465c9557eee93e6821754d1f928 100644 (file)
@@ -3613,17 +3613,17 @@ merge_uploaded_trace_state_variables (struct uploaded_tsv **uploaded_tsvs)
 
 /* target tfile command */
 
-struct target_ops tfile_ops;
+static struct target_ops tfile_ops;
 
 /* Fill in tfile_ops with its defined operations and properties.  */
 
 #define TRACE_HEADER_SIZE 8
 
-char *trace_filename;
-int trace_fd = -1;
-off_t trace_frames_offset;
-off_t cur_offset;
-int cur_data_size;
+static char *trace_filename;
+static int trace_fd = -1;
+static off_t trace_frames_offset;
+static off_t cur_offset;
+static int cur_data_size;
 int trace_regblock_size;
 
 static void tfile_interp_line (char *line,