diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:07:28 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:47:50 -0700 |
commit | e51c07ea4ab456d2a46fb48256007518722d21e9 (patch) | |
tree | be3515ae975d329987e6a65b0eb1126a863a3bef /gdb/target.h | |
parent | 6fea14cd31245114ab9a48a4134790e826be2a24 (diff) | |
download | gdb-e51c07ea4ab456d2a46fb48256007518722d21e9.zip gdb-e51c07ea4ab456d2a46fb48256007518722d21e9.tar.gz gdb-e51c07ea4ab456d2a46fb48256007518722d21e9.tar.bz2 |
convert to_trace_stop
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_trace_stop.
* target.h (struct target_ops) <to_trace_stop>: 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 2caa891..ad644a5 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -849,7 +849,8 @@ struct target_ops TARGET_DEFAULT_NORETURN (tcomplain ()); /* Stop a trace run. */ - void (*to_trace_stop) (struct target_ops *); + void (*to_trace_stop) (struct target_ops *) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Ask the target to find a trace frame of the given type TYPE, using NUM, ADDR1, and ADDR2 as search parameters. Returns the |