diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 20:11:49 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:21 -0700 |
commit | 16fc27d65a74aa6bd524a0f7dc85cdd2caad496f (patch) | |
tree | c3fd98b26ad9b643ec32e79ad1588397950d89c6 /gdb/target.h | |
parent | 115d9817bba7bf2eb44fe6a1e5f92100cad5553d (diff) | |
download | gdb-16fc27d65a74aa6bd524a0f7dc85cdd2caad496f.zip gdb-16fc27d65a74aa6bd524a0f7dc85cdd2caad496f.tar.gz gdb-16fc27d65a74aa6bd524a0f7dc85cdd2caad496f.tar.bz2 |
convert to_call_history_from
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_call_history_from): Unconditionally delegate.
* target.h (struct target_ops) <to_call_history_from>: 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 5c931b9..05df9bb 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1071,7 +1071,8 @@ struct target_ops If SIZE < 0, print abs (SIZE) functions before FROM; otherwise, print SIZE functions after FROM. */ void (*to_call_history_from) (struct target_ops *, - ULONGEST begin, int size, int flags); + ULONGEST begin, int size, int flags) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Print a function trace of an execution trace section from function BEGIN (inclusive) to function END (inclusive). */ |