convert to_get_trace_status
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 21:06:18 +0000 (14:06 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:47:48 +0000 (07:47 -0700)
2014-02-19  Tom Tromey  <tromey@redhat.com>

* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_get_trace_status.
* target.h (struct target_ops) <to_get_trace_status>: Use
TARGET_DEFAULT_RETURN.

gdb/ChangeLog
gdb/target-delegates.c
gdb/target.c
gdb/target.h

index 0302dbf52f7ce40a67adcdd1575c9e458cebe5be..44aa4c151ba109a9cbd2331983496a64b3bd0df9 100644 (file)
@@ -1,3 +1,11 @@
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
+       to_get_trace_status.
+       * target.h (struct target_ops) <to_get_trace_status>: Use
+       TARGET_DEFAULT_RETURN.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target-delegates.c: Rebuild.
index c5b2763ef78d563351a320ede3c687b813b889a6..cb56a3ce92d327e83a2d6347b46701f608b34643 100644 (file)
@@ -741,6 +741,19 @@ tdefault_trace_start (struct target_ops *self)
   tcomplain ();
 }
 
+static int
+delegate_get_trace_status (struct target_ops *self, struct trace_status *arg1)
+{
+  self = self->beneath;
+  return self->to_get_trace_status (self, arg1);
+}
+
+static int
+tdefault_get_trace_status (struct target_ops *self, struct trace_status *arg1)
+{
+  return -1;
+}
+
 static int
 delegate_supports_btrace (struct target_ops *self)
 {
@@ -885,6 +898,8 @@ install_delegators (struct target_ops *ops)
     ops->to_trace_set_readonly_regions = delegate_trace_set_readonly_regions;
   if (ops->to_trace_start == NULL)
     ops->to_trace_start = delegate_trace_start;
+  if (ops->to_get_trace_status == NULL)
+    ops->to_get_trace_status = delegate_get_trace_status;
   if (ops->to_supports_btrace == NULL)
     ops->to_supports_btrace = delegate_supports_btrace;
 }
@@ -956,5 +971,6 @@ install_dummy_methods (struct target_ops *ops)
   ops->to_disable_tracepoint = tdefault_disable_tracepoint;
   ops->to_trace_set_readonly_regions = tdefault_trace_set_readonly_regions;
   ops->to_trace_start = tdefault_trace_start;
+  ops->to_get_trace_status = tdefault_get_trace_status;
   ops->to_supports_btrace = tdefault_supports_btrace;
 }
index cbf18e49c5bce22252e6f25ef094f1ec2ada2271..4d9fa4ce03dd28a0b2fb5b23cca8d6a2a6c1d062 100644 (file)
@@ -696,7 +696,7 @@ update_current_target (void)
       /* Do not inherit to_disable_tracepoint.  */
       /* Do not inherit to_trace_set_readonly_regions.  */
       /* Do not inherit to_trace_start.  */
-      INHERIT (to_get_trace_status, t);
+      /* Do not inherit to_get_trace_status.  */
       INHERIT (to_get_tracepoint_status, t);
       INHERIT (to_trace_stop, t);
       INHERIT (to_trace_find, t);
@@ -752,9 +752,6 @@ update_current_target (void)
            (void (*) (struct target_ops *, ptid_t))
            target_ignore);
   current_target.to_read_description = NULL;
-  de_fault (to_get_trace_status,
-           (int (*) (struct target_ops *, struct trace_status *))
-           return_minus_one);
   de_fault (to_get_tracepoint_status,
            (void (*) (struct target_ops *, struct breakpoint *,
                       struct uploaded_tp *))
index 07ec08036f9d203979cf14bd479d6a293cfa486f..85aba11d473d3a537b4cbc9f2aaf778439e65862 100644 (file)
@@ -840,7 +840,8 @@ struct target_ops
       TARGET_DEFAULT_NORETURN (tcomplain ());
 
     /* Get the current status of a tracing run.  */
-    int (*to_get_trace_status) (struct target_ops *, struct trace_status *ts);
+    int (*to_get_trace_status) (struct target_ops *, struct trace_status *ts)
+      TARGET_DEFAULT_RETURN (-1);
 
     void (*to_get_tracepoint_status) (struct target_ops *,
                                      struct breakpoint *tp,
This page took 0.032458 seconds and 4 git commands to generate.