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

* target.h (struct target_ops) <to_save_trace_data>: Add argument.
(target_save_trace_data): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_save_trace_data): Add 'self' argument.

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

index 1111eec..b639af8 100644 (file)
@@ -1,5 +1,12 @@
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
+       * target.h (struct target_ops) <to_save_trace_data>: Add argument.
+       (target_save_trace_data): Add argument.
+       * target.c (update_current_target): Update.
+       * remote.c (remote_save_trace_data): Add 'self' argument.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
        * tracepoint.c (tfile_get_trace_state_variable_value): Add 'self'
        argument.
        * target.h (struct target_ops)
index 8d4e29e..b518174 100644 (file)
@@ -10939,7 +10939,7 @@ remote_get_trace_state_variable_value (struct target_ops *self,
 }
 
 static int
-remote_save_trace_data (const char *filename)
+remote_save_trace_data (struct target_ops *self, const char *filename)
 {
   struct remote_state *rs = get_remote_state ();
   char *p, *reply;
index 0860a56..75e3a8a 100644 (file)
@@ -890,7 +890,7 @@ update_current_target (void)
            (int (*) (struct target_ops *, int, LONGEST *))
            return_zero);
   de_fault (to_save_trace_data,
-           (int (*) (const char *))
+           (int (*) (struct target_ops *, const char *))
            tcomplain);
   de_fault (to_upload_tracepoints,
            (int (*) (struct uploaded_tp **))
index 16caa29..638931d 100644 (file)
@@ -811,7 +811,7 @@ struct target_ops
     int (*to_get_trace_state_variable_value) (struct target_ops *,
                                              int tsv, LONGEST *val);
 
-    int (*to_save_trace_data) (const char *filename);
+    int (*to_save_trace_data) (struct target_ops *, const char *filename);
 
     int (*to_upload_tracepoints) (struct uploaded_tp **utpp);
 
@@ -1829,7 +1829,7 @@ extern char *target_fileio_read_stralloc (const char *filename);
                                                       (tsv), (val))
 
 #define target_save_trace_data(filename) \
-  (*current_target.to_save_trace_data) (filename)
+  (*current_target.to_save_trace_data) (&current_target, filename)
 
 #define target_upload_tracepoints(utpp) \
   (*current_target.to_upload_tracepoints) (utpp)