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

* target.h (struct target_ops) <to_trace_stop>: Add argument.
(target_trace_stop): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_trace_stop): Add 'self' argument.

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

index b6a692caba3e4e02b6030cb39794fdbc576e6e7d..fd76ca690329648cd460322585067bdfe8b24e9f 100644 (file)
@@ -1,3 +1,10 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target.h (struct target_ops) <to_trace_stop>: Add argument.
+       (target_trace_stop): Add argument.
+       * target.c (update_current_target): Update.
+       * remote.c (remote_trace_stop): Add 'self' argument.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * tracepoint.c (tfile_get_tracepoint_status): Add 'self' argument.
index c5e1b015f98f3675dafee3d217c384395a96abcb..74f0b77dcb53eaa8f7bc17a6acc6cb80c2db3cf7 100644 (file)
@@ -10820,7 +10820,7 @@ remote_get_tracepoint_status (struct target_ops *self, struct breakpoint *bp,
 }
 
 static void
-remote_trace_stop (void)
+remote_trace_stop (struct target_ops *self)
 {
   putpkt ("QTStop");
   remote_get_noisy_reply (&target_buf, &target_buf_size);
index 19c436d281dd7a3e32272a738e9b9c1705aa5797..6eaa70b92d941cf18a0456aed3c05ac4d1dbf412 100644 (file)
@@ -880,7 +880,7 @@ update_current_target (void)
                       struct uploaded_tp *))
            tcomplain);
   de_fault (to_trace_stop,
-           (void (*) (void))
+           (void (*) (struct target_ops *))
            tcomplain);
   de_fault (to_trace_find,
            (int (*) (enum trace_find_type, int, CORE_ADDR, CORE_ADDR, int *))
index 39591a52345878816137a1463bbca3423c71e054..33377eb77318b7c6c8c592e3cae169fa14c9db04 100644 (file)
@@ -794,7 +794,7 @@ struct target_ops
                                      struct uploaded_tp *utp);
 
     /* Stop a trace run.  */
-    void (*to_trace_stop) (void);
+    void (*to_trace_stop) (struct target_ops *);
 
    /* Ask the target to find a trace frame of the given type TYPE,
       using NUM, ADDR1, and ADDR2 as search parameters.  Returns the
@@ -1816,7 +1816,7 @@ extern char *target_fileio_read_stralloc (const char *filename);
   (*current_target.to_get_tracepoint_status) (&current_target, tp, utp)
 
 #define target_trace_stop() \
-  (*current_target.to_trace_stop) ()
+  (*current_target.to_trace_stop) (&current_target)
 
 #define target_trace_find(type,num,addr1,addr2,tpp) \
   (*current_target.to_trace_find) ((type), (num), (addr1), (addr2), (tpp))