diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-12 14:15:23 +0200 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-12 14:15:23 +0200 |
commit | 0782db848b52ecaf29e13d9f12a2c7cfabec2bdb (patch) | |
tree | fa9363f082aa5fc8678fd60e12b247c74dfe2540 /gdb/probe.h | |
parent | 1eac6bea98f41ee12ba9e750a9578bd8585011c9 (diff) | |
download | gdb-0782db848b52ecaf29e13d9f12a2c7cfabec2bdb.zip gdb-0782db848b52ecaf29e13d9f12a2c7cfabec2bdb.tar.gz gdb-0782db848b52ecaf29e13d9f12a2c7cfabec2bdb.tar.bz2 |
probe: Replace VEC(probe_ops_cp) with std::vector
This patch replaces the usage of VEC to store pointers to probe_ops with
an std::vector. The sole usage of that vector type is one global
variable that holds the ops for the various kinds of probes, so this is
pretty straightforward (no allocation/deallocation issues).
gdb/ChangeLog:
* probe.h (probe_ops_cp): Remove typedef.
(DEF_VEC_P (probe_ops_cp)): Remove.
(all_probe_ops): Change type to std::vector.
* probe.c (info_probes_for_ops): Adjust to vector change.
(probe_linespec_to_ops): Likewise.
(all_probe_ops): Change type to std::vector.
(_initialize_probe): Adjust to vector change.
* dtrace-probe.c (_initialize_dtrace_probe): Likewise.
* elfread.c (elf_get_probes): Likewise.
* stap-probe.c (_initialize_stap_probe): Likewise.
Diffstat (limited to 'gdb/probe.h')
-rw-r--r-- | gdb/probe.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/probe.h b/gdb/probe.h index 3248dc8..1b39166 100644 --- a/gdb/probe.h +++ b/gdb/probe.h @@ -160,9 +160,7 @@ struct probe_ops /* Definition of a vector of probe_ops. */ -typedef const struct probe_ops *probe_ops_cp; -DEF_VEC_P (probe_ops_cp); -extern VEC (probe_ops_cp) *all_probe_ops; +extern std::vector<const probe_ops *> all_probe_ops; /* The probe_ops associated with the generic probe. */ |