diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:04:27 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:47:48 -0700 |
commit | 25da2e807e5aa1a19df0b39561d4eefcbac51503 (patch) | |
tree | 5c4110ed1ccd761460e261d1b4f020db7d128b5f /gdb/target.c | |
parent | 86dd181d454a0b975bebafae1893d6ae236c8649 (diff) | |
download | gdb-25da2e807e5aa1a19df0b39561d4eefcbac51503.zip gdb-25da2e807e5aa1a19df0b39561d4eefcbac51503.tar.gz gdb-25da2e807e5aa1a19df0b39561d4eefcbac51503.tar.bz2 |
convert to_trace_start
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_trace_start.
* target.h (struct target_ops) <to_trace_start>: Use
TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gdb/target.c b/gdb/target.c index 0880cf1..cbf18e4 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -695,7 +695,7 @@ update_current_target (void) /* Do not inherit to_enable_tracepoint. */ /* Do not inherit to_disable_tracepoint. */ /* Do not inherit to_trace_set_readonly_regions. */ - INHERIT (to_trace_start, t); + /* Do not inherit to_trace_start. */ INHERIT (to_get_trace_status, t); INHERIT (to_get_tracepoint_status, t); INHERIT (to_trace_stop, 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_start, - (void (*) (struct target_ops *)) - tcomplain); de_fault (to_get_trace_status, (int (*) (struct target_ops *, struct trace_status *)) return_minus_one); |