convert to_set_disconnected_tracing
authorTom Tromey <tromey@redhat.com>
Wed, 18 Dec 2013 21:12:29 +0000 (14:12 -0700)
committerTom Tromey <tromey@redhat.com>
Wed, 19 Feb 2014 14:47:56 +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_set_disconnected_tracing.
* target.h (struct target_ops) <to_set_disconnected_tracing>: Use
TARGET_DEFAULT_IGNORE.

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

index 57dfaf2..31219b6 100644 (file)
@@ -2,6 +2,14 @@
 
        * target-delegates.c: Rebuild.
        * target.c (update_current_target): Don't inherit or default
+       to_set_disconnected_tracing.
+       * target.h (struct target_ops) <to_set_disconnected_tracing>: Use
+       TARGET_DEFAULT_IGNORE.
+
+2014-02-19  Tom Tromey  <tromey@redhat.com>
+
+       * target-delegates.c: Rebuild.
+       * target.c (update_current_target): Don't inherit or default
        to_get_min_fast_tracepoint_insn_len.
        (return_minus_one): Remove.
        * target.h (struct target_ops)
index ae9e567..d82b4bf 100644 (file)
@@ -871,6 +871,18 @@ tdefault_get_min_fast_tracepoint_insn_len (struct target_ops *self)
   return -1;
 }
 
+static void
+delegate_set_disconnected_tracing (struct target_ops *self, int arg1)
+{
+  self = self->beneath;
+  self->to_set_disconnected_tracing (self, arg1);
+}
+
+static void
+tdefault_set_disconnected_tracing (struct target_ops *self, int arg1)
+{
+}
+
 static int
 delegate_supports_btrace (struct target_ops *self)
 {
@@ -1035,6 +1047,8 @@ install_delegators (struct target_ops *ops)
     ops->to_get_raw_trace_data = delegate_get_raw_trace_data;
   if (ops->to_get_min_fast_tracepoint_insn_len == NULL)
     ops->to_get_min_fast_tracepoint_insn_len = delegate_get_min_fast_tracepoint_insn_len;
+  if (ops->to_set_disconnected_tracing == NULL)
+    ops->to_set_disconnected_tracing = delegate_set_disconnected_tracing;
   if (ops->to_supports_btrace == NULL)
     ops->to_supports_btrace = delegate_supports_btrace;
 }
@@ -1116,5 +1130,6 @@ install_dummy_methods (struct target_ops *ops)
   ops->to_upload_trace_state_variables = tdefault_upload_trace_state_variables;
   ops->to_get_raw_trace_data = tdefault_get_raw_trace_data;
   ops->to_get_min_fast_tracepoint_insn_len = tdefault_get_min_fast_tracepoint_insn_len;
+  ops->to_set_disconnected_tracing = tdefault_set_disconnected_tracing;
   ops->to_supports_btrace = tdefault_supports_btrace;
 }
index bfbf5fd..e6ba817 100644 (file)
@@ -704,7 +704,7 @@ update_current_target (void)
       /* Do not inherit to_upload_trace_state_variables.  */
       /* Do not inherit to_get_raw_trace_data.  */
       /* Do not inherit to_get_min_fast_tracepoint_insn_len.  */
-      INHERIT (to_set_disconnected_tracing, t);
+      /* Do not inherit to_set_disconnected_tracing.  */
       INHERIT (to_set_circular_trace_buffer, t);
       INHERIT (to_set_trace_buffer_size, t);
       INHERIT (to_set_trace_notes, t);
@@ -750,9 +750,6 @@ update_current_target (void)
            (void (*) (struct target_ops *, ptid_t))
            target_ignore);
   current_target.to_read_description = NULL;
-  de_fault (to_set_disconnected_tracing,
-           (void (*) (struct target_ops *, int))
-           target_ignore);
   de_fault (to_set_circular_trace_buffer,
            (void (*) (struct target_ops *, int))
            target_ignore);
index 3cdb028..91d0c34 100644 (file)
@@ -893,7 +893,8 @@ struct target_ops
 
     /* Set the target's tracing behavior in response to unexpected
        disconnection - set VAL to 1 to keep tracing, 0 to stop.  */
-    void (*to_set_disconnected_tracing) (struct target_ops *, int val);
+    void (*to_set_disconnected_tracing) (struct target_ops *, int val)
+      TARGET_DEFAULT_IGNORE ();
     void (*to_set_circular_trace_buffer) (struct target_ops *, int val);
     /* Set the size of trace buffer in the target.  */
     void (*to_set_trace_buffer_size) (struct target_ops *, LONGEST val);