aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 20:24:04 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:48:27 -0700
commit671e76cc63ebed981621ee747e18a73320ea426d (patch)
tree7fbf62813251955c969a95f071341d96cdb372cb /gdb/target.h
parente9179bb3de4d8f221223a2cd68c58114204d6100 (diff)
downloadgdb-671e76cc63ebed981621ee747e18a73320ea426d.zip
gdb-671e76cc63ebed981621ee747e18a73320ea426d.tar.gz
gdb-671e76cc63ebed981621ee747e18a73320ea426d.tar.bz2
convert to_goto_record_begin
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_goto_record_begin): Unconditionally delegate. * target.h (struct target_ops) <to_goto_record_begin>: Use TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h
index cb1c431..d90205c 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -1035,7 +1035,8 @@ struct target_ops
int (*to_record_is_replaying) (struct target_ops *);
/* Go to the begin of the execution trace. */
- void (*to_goto_record_begin) (struct target_ops *);
+ void (*to_goto_record_begin) (struct target_ops *)
+ TARGET_DEFAULT_NORETURN (tcomplain ());
/* Go to the end of the execution trace. */
void (*to_goto_record_end) (struct target_ops *)