Rename traceframe_info variable to current_traceframe_info
authorSimon Marchi <simon.marchi@polymtl.ca>
Sat, 14 Oct 2017 12:41:01 +0000 (08:41 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Sat, 14 Oct 2017 12:41:01 +0000 (08:41 -0400)
... so it doesn't shadow the traceframe_info type.  It think it's a
clearer name anyway.

gdb/ChangeLog:

* tracepoint.c (traceframe_info): Rename to...
(current_traceframe_info): ...this.
(clear_traceframe_info): Adjust.
(get_traceframe_info): Adjust.

gdb/ChangeLog
gdb/tracepoint.c

index a42351f94664bd507bbebb11a3808e68028f2f53..773c8286b13af8f761bb679e5b364a1b0347cc63 100644 (file)
@@ -1,3 +1,10 @@
+2017-10-14  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * tracepoint.c (traceframe_info): Rename to...
+       (current_traceframe_info): ...this.
+       (clear_traceframe_info): Adjust.
+       (get_traceframe_info): Adjust.
+
 2017-10-14  Simon Marchi  <simon.marchi@ericsson.com>
 
        * nat/linux-osdata.c: Include algorithm.
index c66a4b39c529045ccd4babe0678c224d536e6d7f..bbfc2ce5bc52ef16fac9fd147ab484e257b48ff3 100644 (file)
@@ -133,7 +133,7 @@ static int tracepoint_number;
    yet attempted to fetch it, or if the target does not support
    fetching this object, or if we're not inspecting a traceframe
    presently.  */
-static struct traceframe_info *traceframe_info;
+static struct traceframe_info *current_traceframe_info;
 
 /* Tracing command lists.  */
 static struct cmd_list_element *tfindlist;
@@ -211,8 +211,8 @@ free_traceframe_info (struct traceframe_info *info)
 static void
 clear_traceframe_info (void)
 {
-  free_traceframe_info (traceframe_info);
-  traceframe_info = NULL;
+  free_traceframe_info (current_traceframe_info);
+  current_traceframe_info = NULL;
 }
 
 /* Set traceframe number to NUM.  */
@@ -4101,10 +4101,10 @@ parse_traceframe_info (const char *tframe_info)
 struct traceframe_info *
 get_traceframe_info (void)
 {
-  if (traceframe_info == NULL)
-    traceframe_info = target_traceframe_info ();
+  if (current_traceframe_info == NULL)
+    current_traceframe_info = target_traceframe_info ();
 
-  return traceframe_info;
+  return current_traceframe_info;
 }
 
 /* If the target supports the query, return in RESULT the set of
This page took 0.033219 seconds and 4 git commands to generate.