diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 20:26:34 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:30 -0700 |
commit | f09e210795cb9e182feb2d02d97a6c9b22a46f53 (patch) | |
tree | ce4a5e2e0eb0e4d5072f88cfa128f8e65964b5c0 /gdb/target.h | |
parent | 07366925095c7d091360b92bd686b4dc58ecd4f3 (diff) | |
download | binutils-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.h | 3 |
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 *) |