convert to_download_tracepoint
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 20:57:41 +0000 (13:57 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:47:43 +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_download_tracepoint.
* target.h (struct target_ops) <to_download_tracepoint>: Use
TARGET_DEFAULT_NORETURN.

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

index a26d35279608f6cb73cd61b4bed37b7d81f7ad34..51df9f990636c8ce8a38eade3a6fd34674209b27 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_download_tracepoint.
+       * target.h (struct target_ops) <to_download_tracepoint>: Use
+       TARGET_DEFAULT_NORETURN.
+
 2014-02-19  Tom Tromey  <tromey@redhat.com>
 
        * target-delegates.c: Rebuild.
index 6b0520992b2802a72a3f8c051f7cb40070775442..560a099b08c9161b7d3d352894e5e9ffe3f4dca9 100644 (file)
@@ -650,6 +650,19 @@ tdefault_trace_init (struct target_ops *self)
   tcomplain ();
 }
 
+static void
+delegate_download_tracepoint (struct target_ops *self, struct bp_location *arg1)
+{
+  self = self->beneath;
+  self->to_download_tracepoint (self, arg1);
+}
+
+static void
+tdefault_download_tracepoint (struct target_ops *self, struct bp_location *arg1)
+{
+  tcomplain ();
+}
+
 static int
 delegate_supports_btrace (struct target_ops *self)
 {
@@ -780,6 +793,8 @@ install_delegators (struct target_ops *ops)
     ops->to_thread_architecture = delegate_thread_architecture;
   if (ops->to_trace_init == NULL)
     ops->to_trace_init = delegate_trace_init;
+  if (ops->to_download_tracepoint == NULL)
+    ops->to_download_tracepoint = delegate_download_tracepoint;
   if (ops->to_supports_btrace == NULL)
     ops->to_supports_btrace = delegate_supports_btrace;
 }
@@ -844,5 +859,6 @@ install_dummy_methods (struct target_ops *ops)
   ops->to_supports_string_tracing = tdefault_supports_string_tracing;
   ops->to_thread_architecture = default_thread_architecture;
   ops->to_trace_init = tdefault_trace_init;
+  ops->to_download_tracepoint = tdefault_download_tracepoint;
   ops->to_supports_btrace = tdefault_supports_btrace;
 }
index db4fed308dd748e457d3dd8bdcac792b51830adb..1865e69f5b15d361792942287096736a9bb2d5f7 100644 (file)
@@ -689,7 +689,7 @@ update_current_target (void)
       /* Do not inherit to_supports_enable_disable_tracepoint.  */
       /* Do not inherit to_supports_string_tracing.  */
       /* Do not inherit to_trace_init.  */
-      INHERIT (to_download_tracepoint, t);
+      /* Do not inherit to_download_tracepoint.  */
       INHERIT (to_can_download_tracepoint, t);
       INHERIT (to_download_trace_state_variable, t);
       INHERIT (to_enable_tracepoint, 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_download_tracepoint,
-           (void (*) (struct target_ops *, struct bp_location *))
-           tcomplain);
   de_fault (to_can_download_tracepoint,
            (int (*) (struct target_ops *))
            return_zero);
index 15ea4a8ad6415969277f82547bf88b32cf1733c1..3cfdfab19ddad452fa1154aa06d9e696d66b4e16 100644 (file)
@@ -806,7 +806,8 @@ struct target_ops
 
     /* Send full details of a tracepoint location to the target.  */
     void (*to_download_tracepoint) (struct target_ops *,
-                                   struct bp_location *location);
+                                   struct bp_location *location)
+      TARGET_DEFAULT_NORETURN (tcomplain ());
 
     /* Is the target able to download tracepoint locations in current
        state?  */
This page took 0.035924 seconds and 4 git commands to generate.