Add target_ops argument to to_call_history_from
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 04:48:53 +0000 (21:48 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:46:57 +0000 (07:46 -0700)
2014-02-19  Tom Tromey  <tromey@redhat.com>

* target.h (struct target_ops) <to_call_history_from>: Add
argument.
* target.c (target_call_history_from): Add argument.
* record-btrace.c (record_btrace_call_history_from): Add 'self'
argument.

gdb/ChangeLog
gdb/record-btrace.c
gdb/target.c
gdb/target.h

index 0c9946f..1dd83d7 100644 (file)
@@ -1,5 +1,13 @@
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
+       * target.h (struct target_ops) <to_call_history_from>: Add
+       argument.
+       * target.c (target_call_history_from): Add argument.
+       * record-btrace.c (record_btrace_call_history_from): Add 'self'
+       argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
        * target.h (struct target_ops) <to_call_history>: Add argument.
        * target.c (target_call_history): Add argument.
        * record-btrace.c (record_btrace_call_history): Add 'self'
index 7af9c89..fafe5e1 100644 (file)
@@ -758,7 +758,8 @@ record_btrace_call_history_range (ULONGEST from, ULONGEST to, int flags)
 /* The to_call_history_from method of target record-btrace.  */
 
 static void
-record_btrace_call_history_from (ULONGEST from, int size, int flags)
+record_btrace_call_history_from (struct target_ops *self,
+                                ULONGEST from, int size, int flags)
 {
   ULONGEST begin, end, context;
 
index 8743083..d2c4da8 100644 (file)
@@ -4481,7 +4481,7 @@ target_call_history_from (ULONGEST begin, int size, int flags)
   for (t = current_target.beneath; t != NULL; t = t->beneath)
     if (t->to_call_history_from != NULL)
       {
-       t->to_call_history_from (begin, size, flags);
+       t->to_call_history_from (t, begin, size, flags);
        return;
       }
 
index 27f79aa..de7412b 100644 (file)
@@ -977,7 +977,8 @@ struct target_ops
        at function FROM.
        If SIZE < 0, print abs (SIZE) functions before FROM; otherwise, print
        SIZE functions after FROM.  */
-    void (*to_call_history_from) (ULONGEST begin, int size, int flags);
+    void (*to_call_history_from) (struct target_ops *,
+                                 ULONGEST begin, int size, int flags);
 
     /* Print a function trace of an execution trace section from function BEGIN
        (inclusive) to function END (inclusive).  */