aboutsummaryrefslogtreecommitdiff
path: root/gdb/target-delegates.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 14:07:28 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:47:50 -0700
commite51c07ea4ab456d2a46fb48256007518722d21e9 (patch)
treebe3515ae975d329987e6a65b0eb1126a863a3bef /gdb/target-delegates.c
parent6fea14cd31245114ab9a48a4134790e826be2a24 (diff)
downloadgdb-e51c07ea4ab456d2a46fb48256007518722d21e9.zip
gdb-e51c07ea4ab456d2a46fb48256007518722d21e9.tar.gz
gdb-e51c07ea4ab456d2a46fb48256007518722d21e9.tar.bz2
convert to_trace_stop
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (update_current_target): Don't inherit or default to_trace_stop. * target.h (struct target_ops) <to_trace_stop>: Use TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target-delegates.c')
-rw-r--r--gdb/target-delegates.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c
index 898ee44..62fda4c 100644
--- a/gdb/target-delegates.c
+++ b/gdb/target-delegates.c
@@ -767,6 +767,19 @@ tdefault_get_tracepoint_status (struct target_ops *self, struct breakpoint *arg1
tcomplain ();
}
+static void
+delegate_trace_stop (struct target_ops *self)
+{
+ self = self->beneath;
+ self->to_trace_stop (self);
+}
+
+static void
+tdefault_trace_stop (struct target_ops *self)
+{
+ tcomplain ();
+}
+
static int
delegate_supports_btrace (struct target_ops *self)
{
@@ -915,6 +928,8 @@ install_delegators (struct target_ops *ops)
ops->to_get_trace_status = delegate_get_trace_status;
if (ops->to_get_tracepoint_status == NULL)
ops->to_get_tracepoint_status = delegate_get_tracepoint_status;
+ if (ops->to_trace_stop == NULL)
+ ops->to_trace_stop = delegate_trace_stop;
if (ops->to_supports_btrace == NULL)
ops->to_supports_btrace = delegate_supports_btrace;
}
@@ -988,5 +1003,6 @@ install_dummy_methods (struct target_ops *ops)
ops->to_trace_start = tdefault_trace_start;
ops->to_get_trace_status = tdefault_get_trace_status;
ops->to_get_tracepoint_status = tdefault_get_tracepoint_status;
+ ops->to_trace_stop = tdefault_trace_stop;
ops->to_supports_btrace = tdefault_supports_btrace;
}