diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:11:12 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:47:55 -0700 |
commit | ace92e7d1435c46e3085f1183f957ab372b1f4a8 (patch) | |
tree | 88c4df7201804103a4e42537f6389a81de1ef557 /gdb/target.h | |
parent | 081204679d54dc5c6d7801dd4cc6decd949054b3 (diff) | |
download | gdb-ace92e7d1435c46e3085f1183f957ab372b1f4a8.zip gdb-ace92e7d1435c46e3085f1183f957ab372b1f4a8.tar.gz gdb-ace92e7d1435c46e3085f1183f957ab372b1f4a8.tar.bz2 |
convert to_get_raw_trace_data
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_get_raw_trace_data.
* target.h (struct target_ops) <to_get_raw_trace_data>: 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 11e716c..9fe5991 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -881,7 +881,8 @@ struct target_ops TARGET_DEFAULT_RETURN (0); LONGEST (*to_get_raw_trace_data) (struct target_ops *, gdb_byte *buf, - ULONGEST offset, LONGEST len); + ULONGEST offset, LONGEST len) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Get the minimum length of instruction on which a fast tracepoint may be set on the target. If this operation is unsupported, |