aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 14:06:52 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:47:49 -0700
commit6fea14cd31245114ab9a48a4134790e826be2a24 (patch)
treeeeaf2006dda17d79694325a1b4396cbb230d168b /gdb/target.c
parent4072d4ff86a32410cb7073eafa5dca07e88ecc69 (diff)
downloadgdb-6fea14cd31245114ab9a48a4134790e826be2a24.zip
gdb-6fea14cd31245114ab9a48a4134790e826be2a24.tar.gz
gdb-6fea14cd31245114ab9a48a4134790e826be2a24.tar.bz2
convert to_get_tracepoint_status
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (update_current_target): Don't inherit or default to_get_tracepoint_status. * target.h (struct target_ops) <to_get_tracepoint_status>: Use TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target.c')
-rw-r--r--gdb/target.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/target.c b/gdb/target.c
index 4d9fa4c..6da6cf8 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -697,7 +697,7 @@ update_current_target (void)
/* Do not inherit to_trace_set_readonly_regions. */
/* Do not inherit to_trace_start. */
/* Do not inherit to_get_trace_status. */
- INHERIT (to_get_tracepoint_status, t);
+ /* Do not inherit to_get_tracepoint_status. */
INHERIT (to_trace_stop, t);
INHERIT (to_trace_find, t);
INHERIT (to_get_trace_state_variable_value, t);
@@ -752,10 +752,6 @@ update_current_target (void)
(void (*) (struct target_ops *, ptid_t))
target_ignore);
current_target.to_read_description = NULL;
- de_fault (to_get_tracepoint_status,
- (void (*) (struct target_ops *, struct breakpoint *,
- struct uploaded_tp *))
- tcomplain);
de_fault (to_trace_stop,
(void (*) (struct target_ops *))
tcomplain);