aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 20:26:34 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:48:30 -0700
commitf09e210795cb9e182feb2d02d97a6c9b22a46f53 (patch)
treece4a5e2e0eb0e4d5072f88cfa128f8e65964b5c0 /gdb/target.h
parent07366925095c7d091360b92bd686b4dc58ecd4f3 (diff)
downloadbinutils-f09e210795cb9e182feb2d02d97a6c9b22a46f53.zip
binutils-f09e210795cb9e182feb2d02d97a6c9b22a46f53.tar.gz
binutils-f09e210795cb9e182feb2d02d97a6c9b22a46f53.tar.bz2
convert to_save_record
2014-02-19 Tom Tromey <tromey@redhat.com> * target-delegates.c: Rebuild. * target.c (target_save_record): Unconditionally delegate. * target.h (struct target_ops) <to_save_record>: 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 0bce110..e3d7ed8 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -1026,7 +1026,8 @@ struct target_ops
void (*to_info_record) (struct target_ops *);
/* Save the recorded execution trace into a file. */
- void (*to_save_record) (struct target_ops *, const char *filename);
+ void (*to_save_record) (struct target_ops *, const char *filename)
+ TARGET_DEFAULT_NORETURN (tcomplain ());
/* Delete the recorded execution trace from the current position onwards. */
void (*to_delete_record) (struct target_ops *)