diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 20:13:40 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:22 -0700 |
commit | 170049d41c3cb8becb46e8e71a30f67f5d47d5ad (patch) | |
tree | 1a0350bae260abc54f01d71492b5732b46a0f82e /gdb/target.h | |
parent | 16fc27d65a74aa6bd524a0f7dc85cdd2caad496f (diff) | |
download | gdb-170049d41c3cb8becb46e8e71a30f67f5d47d5ad.zip gdb-170049d41c3cb8becb46e8e71a30f67f5d47d5ad.tar.gz gdb-170049d41c3cb8becb46e8e71a30f67f5d47d5ad.tar.bz2 |
convert to_call_history
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_call_history): Unconditionally delegate.
* target.h (struct target_ops) <to_call_history>: 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 05df9bb..9f7a3dc 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1064,7 +1064,8 @@ struct target_ops /* Print a function trace of the recorded execution trace. If SIZE < 0, print abs (SIZE) preceding functions; otherwise, print SIZE succeeding functions. */ - void (*to_call_history) (struct target_ops *, int size, int flags); + void (*to_call_history) (struct target_ops *, int size, int flags) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Print a function trace of the recorded execution trace starting at function FROM. |