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

* target.h (struct target_ops) <to_trace_set_readonly_regions>:
Add argument.
(target_trace_set_readonly_regions): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_trace_set_readonly_regions): Add 'self'
argument.

gdb/ChangeLog
gdb/remote.c
gdb/target.c
gdb/target.h

index 5e1e2ae3afe8c93d041bab4c8211edb3ee3dc2e9..1f2e45233f334b86e3c821ae1a4dc8cc1a871bf0 100644 (file)
@@ -1,3 +1,12 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_trace_set_readonly_regions>:
+       Add argument.
+       (target_trace_set_readonly_regions): Add argument.
+       * target.c (update_current_target): Update.
+       * remote.c (remote_trace_set_readonly_regions): Add 'self'
+       argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_disable_tracepoint>: Add
index c7dd65c311f920cf367244952010e7b6eb003e5b..255545b85233993b22064017f894f01f3256079e 100644 (file)
@@ -10661,7 +10661,7 @@ remote_disable_tracepoint (struct target_ops *self,
 }
 
 static void
-remote_trace_set_readonly_regions (void)
+remote_trace_set_readonly_regions (struct target_ops *self)
 {
   asection *s;
   bfd *abfd = NULL;
index 69ee7562a3fc9b29dbf1099fbecb356cf8dc09f9..cbdce77a20c0081d3a6c6296dece5c87f0f86a8f 100644 (file)
@@ -867,7 +867,7 @@ update_current_target (void)
            (void (*) (struct target_ops *, struct bp_location *))
            tcomplain);
   de_fault (to_trace_set_readonly_regions,
-           (void (*) (void))
+           (void (*) (struct target_ops *))
            tcomplain);
   de_fault (to_trace_start,
            (void (*) (void))
index 7e3ad87cb717d3676e3f46a719d01337099578bf..c46b42ba58b50ec53001a1cd3533ab921f69f0f9 100644 (file)
@@ -781,7 +781,7 @@ struct target_ops
     /* Inform the target info of memory regions that are readonly
        (such as text sections), and so it should return data from
        those rather than look in the trace buffer.  */
-    void (*to_trace_set_readonly_regions) (void);
+    void (*to_trace_set_readonly_regions) (struct target_ops *);
 
     /* Start a trace run.  */
     void (*to_trace_start) (void);
@@ -1806,7 +1806,7 @@ extern char *target_fileio_read_stralloc (const char *filename);
   (*current_target.to_trace_start) ()
 
 #define target_trace_set_readonly_regions() \
-  (*current_target.to_trace_set_readonly_regions) ()
+  (*current_target.to_trace_set_readonly_regions) (&current_target)
 
 #define target_get_trace_status(ts) \
   (*current_target.to_get_trace_status) (ts)