diff options
author | Yao Qi <yao@codesourcery.com> | 2013-04-07 10:23:34 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2013-04-07 10:23:34 +0000 |
commit | cc5925ad7ee6c03a861ed2894f61610aea537ec5 (patch) | |
tree | 1be5519cce5c3438178f4ff72d4a93278638b8b9 /gdb/target.h | |
parent | afe1492b2117060906ad3cf2d9d62bbbd777f956 (diff) | |
download | gdb-cc5925ad7ee6c03a861ed2894f61610aea537ec5.zip gdb-cc5925ad7ee6c03a861ed2894f61610aea537ec5.tar.gz gdb-cc5925ad7ee6c03a861ed2894f61610aea537ec5.tar.bz2 |
gdb/
* remote.c (remote_trace_find): Change type of parameters 'addr1'
and 'addr2' to CORE_ADDR.
* target.c (update_current_target): Update.
* target.h (struct target_ops) <to_trace_find>: Change parameter
type to CORE_ADDR.
* tracepoint.c (tfind_1): Change type of parameters 'addr1' and
'addr2' to CORE_ADDR.
(tfile_trace_find): Likewise.
(tfile_get_traceframe_address): Change return type to CORE_ADDR.
Change local variable 'addr' to type CORE_ADDR.
* tracepoint.h (tfind_1): Update declaration.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index 4f8520c..319fcc3 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -784,7 +784,7 @@ struct target_ops TPP. If no trace frame matches, return -1. May throw if the operation fails. */ int (*to_trace_find) (enum trace_find_type type, int num, - ULONGEST addr1, ULONGEST addr2, int *tpp); + CORE_ADDR addr1, CORE_ADDR addr2, int *tpp); /* Get the value of the trace state variable number TSV, returning 1 if the value is known and writing the value itself into the |