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/stap-probe.c | |
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/stap-probe.c')
-rw-r--r-- | gdb/stap-probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stap-probe.c b/gdb/stap-probe.c index a65fc7e..61eb8e4 100644 --- a/gdb/stap-probe.c +++ b/gdb/stap-probe.c @@ -1716,7 +1716,7 @@ info_probes_stap_command (char *arg, int from_tty) void _initialize_stap_probe (void) { - VEC_safe_push (probe_ops_cp, all_probe_ops, &stap_probe_ops); + all_probe_ops.push_back (&stap_probe_ops); add_setshow_zuinteger_cmd ("stap-expression", class_maintenance, &stap_expression_debug, |