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

* target.h (struct target_ops) <to_set_trace_notes>: Add argument.
(target_set_trace_notes): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_set_trace_notes): Add 'self' argument.

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

index b8391d2476b296543d25034f5216f23889547a3e..c9cf31c629ac9ca3a95574013a5a1a9ccef350ca 100644 (file)
@@ -1,3 +1,10 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_set_trace_notes>: Add argument.
+       (target_set_trace_notes): Add argument.
+       * target.c (update_current_target): Update.
+       * remote.c (remote_set_trace_notes): Add 'self' argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target.h (struct target_ops) <to_set_trace_buffer_size>: Add
index 452e234b47c50b13764340288c4f8c3d28c91d8a..1e33ed7e66d6aab4beb3261db43d631baccc3cc7 100644 (file)
@@ -11144,7 +11144,8 @@ remote_set_trace_buffer_size (struct target_ops *self, LONGEST val)
 }
 
 static int
-remote_set_trace_notes (const char *user, const char *notes,
+remote_set_trace_notes (struct target_ops *self,
+                       const char *user, const char *notes,
                        const char *stop_notes)
 {
   struct remote_state *rs = get_remote_state ();
index 9f3aa8649822ff2f632da2698346b3955e84ae16..d61d10091b3ee647325c64ab28a71d6cde6a08f7 100644 (file)
@@ -914,7 +914,8 @@ update_current_target (void)
            (void (*) (struct target_ops *, LONGEST))
            target_ignore);
   de_fault (to_set_trace_notes,
-           (int (*) (const char *, const char *, const char *))
+           (int (*) (struct target_ops *,
+                     const char *, const char *, const char *))
            return_zero);
   de_fault (to_get_tib_address,
            (int (*) (ptid_t, CORE_ADDR *))
index e62ee942f7773459997845354293181a44471565..1acd7196dd622cf4b40a6f986d6e34cc47487b60 100644 (file)
@@ -837,7 +837,8 @@ struct target_ops
 
     /* Add/change textual notes about the trace run, returning 1 if
        successful, 0 otherwise.  */
-    int (*to_set_trace_notes) (const char *user, const char *notes,
+    int (*to_set_trace_notes) (struct target_ops *,
+                              const char *user, const char *notes,
                               const char *stopnotes);
 
     /* Return the processor core that thread PTID was last seen on.
@@ -1856,7 +1857,8 @@ extern char *target_fileio_read_stralloc (const char *filename);
   (*current_target.to_set_trace_buffer_size) (&current_target, val)
 
 #define        target_set_trace_notes(user,notes,stopnotes)            \
-  (*current_target.to_set_trace_notes) ((user), (notes), (stopnotes))
+  (*current_target.to_set_trace_notes) (&current_target,       \
+                                       (user), (notes), (stopnotes))
 
 #define target_get_tib_address(ptid, addr) \
   (*current_target.to_get_tib_address) ((ptid), (addr))