aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 13:57:05 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:47:42 -0700
commit5536135bf41239d466c47b827e02b49197bd2b48 (patch)
tree39610e3c74f093d2aab01a3a768b06a9fe9acf08 /gdb/target.c
parent9409d39e8776a1f556cba720b7fcb0ea60c22cd4 (diff)
downloadgdb-5536135bf41239d466c47b827e02b49197bd2b48.zip
gdb-5536135bf41239d466c47b827e02b49197bd2b48.tar.gz
gdb-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.c')
-rw-r--r--gdb/target.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/target.c b/gdb/target.c
index c9e2ba5..db4fed3 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -688,7 +688,7 @@ update_current_target (void)
/* Do not inherit to_supports_multi_process. */
/* Do not inherit to_supports_enable_disable_tracepoint. */
/* Do not inherit to_supports_string_tracing. */
- INHERIT (to_trace_init, t);
+ /* Do not inherit to_trace_init. */
INHERIT (to_download_tracepoint, t);
INHERIT (to_can_download_tracepoint, t);
INHERIT (to_download_trace_state_variable, 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_trace_init,
- (void (*) (struct target_ops *))
- tcomplain);
de_fault (to_download_tracepoint,
(void (*) (struct target_ops *, struct bp_location *))
tcomplain);