diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 13:57:05 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:47:42 -0700 |
commit | 5536135bf41239d466c47b827e02b49197bd2b48 (patch) | |
tree | 39610e3c74f093d2aab01a3a768b06a9fe9acf08 /gdb/target-delegates.c | |
parent | 9409d39e8776a1f556cba720b7fcb0ea60c22cd4 (diff) | |
download | binutils-5536135bf41239d466c47b827e02b49197bd2b48.zip binutils-5536135bf41239d466c47b827e02b49197bd2b48.tar.gz binutils-5536135bf41239d466c47b827e02b49197bd2b48.tar.bz2 |
convert to_trace_init
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_trace_init.
* target.h (struct target_ops) <to_trace_init>: Use
TARGET_DEFAULT_RETURN.
Diffstat (limited to 'gdb/target-delegates.c')
-rw-r--r-- | gdb/target-delegates.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index 275ce58..6b05209 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -637,6 +637,19 @@ delegate_thread_architecture (struct target_ops *self, ptid_t arg1) return self->to_thread_architecture (self, arg1); } +static void +delegate_trace_init (struct target_ops *self) +{ + self = self->beneath; + self->to_trace_init (self); +} + +static void +tdefault_trace_init (struct target_ops *self) +{ + tcomplain (); +} + static int delegate_supports_btrace (struct target_ops *self) { @@ -765,6 +778,8 @@ install_delegators (struct target_ops *ops) ops->to_supports_string_tracing = delegate_supports_string_tracing; if (ops->to_thread_architecture == NULL) ops->to_thread_architecture = delegate_thread_architecture; + if (ops->to_trace_init == NULL) + ops->to_trace_init = delegate_trace_init; if (ops->to_supports_btrace == NULL) ops->to_supports_btrace = delegate_supports_btrace; } @@ -828,5 +843,6 @@ install_dummy_methods (struct target_ops *ops) ops->to_supports_enable_disable_tracepoint = tdefault_supports_enable_disable_tracepoint; 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_supports_btrace = tdefault_supports_btrace; } |