diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2017-10-14 08:43:54 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-10-14 08:43:55 -0400 |
commit | 4cdd21a8d3fd943d6993e9d053edf09583802744 (patch) | |
tree | 23e8793e081cdccbc32fa04ae7af0b78bf4933ca /gdb/tracepoint.h | |
parent | d0d292a27402ee2d3f91d541371f134f91730373 (diff) | |
download | binutils-4cdd21a8d3fd943d6993e9d053edf09583802744.zip binutils-4cdd21a8d3fd943d6993e9d053edf09583802744.tar.gz binutils-4cdd21a8d3fd943d6993e9d053edf09583802744.tar.bz2 |
Use std::vector for traceframe_info::memory
Straightforward change from a VEC to std::vector. This allows making
the destruction of a traceframe_info trivial.
I added a constructor with parameters to mem_range to be able to
emplace_back directly with the values. It is necessary to leave a
default constructor there because mem_range is still used in a VEC.
gdb/ChangeLog:
* memrange.h (struct mem_range): Add constructors.
* tracepoint.h (struct traceframe_info) <memory>: Change type to
std::vector<mem_range>.
* tracepoint.c (free_traceframe_info): Don't manually free
vector.
(traceframe_info_start_memory): Adjust to vector change.
(traceframe_available_memory): Likewise.
* tracefile-tfile.c (build_traceframe_info): Likewise.
* ctf.c (ctf_traceframe_info): Likewise.
Diffstat (limited to 'gdb/tracepoint.h')
-rw-r--r-- | gdb/tracepoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tracepoint.h b/gdb/tracepoint.h index 625415c..872681d 100644 --- a/gdb/tracepoint.h +++ b/gdb/tracepoint.h @@ -32,7 +32,7 @@ struct traceframe_info { /* Collected memory. */ - VEC(mem_range_s) *memory = NULL; + std::vector<mem_range> memory; /* Collected trace state variables. */ std::vector<int> tvars; |