diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:06:52 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:47:49 -0700 |
commit | 6fea14cd31245114ab9a48a4134790e826be2a24 (patch) | |
tree | eeaf2006dda17d79694325a1b4396cbb230d168b /gdb/target.h | |
parent | 4072d4ff86a32410cb7073eafa5dca07e88ecc69 (diff) | |
download | gdb-6fea14cd31245114ab9a48a4134790e826be2a24.zip gdb-6fea14cd31245114ab9a48a4134790e826be2a24.tar.gz gdb-6fea14cd31245114ab9a48a4134790e826be2a24.tar.bz2 |
convert to_get_tracepoint_status
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_get_tracepoint_status.
* target.h (struct target_ops) <to_get_tracepoint_status>: 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 85aba11..2caa891 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -845,7 +845,8 @@ struct target_ops void (*to_get_tracepoint_status) (struct target_ops *, struct breakpoint *tp, - struct uploaded_tp *utp); + struct uploaded_tp *utp) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Stop a trace run. */ void (*to_trace_stop) (struct target_ops *); |