diff options
author | brolley <brolley> | 2008-02-13 16:43:08 +0000 |
---|---|---|
committer | brolley <brolley> | 2008-02-13 16:43:08 +0000 |
commit | 2c5a19c6ba969d8fa30070e7579c1597a0e1c194 (patch) | |
tree | 1b1de9e06811e80ccd5703cf8c03004e4edeeb35 /elaborate.h | |
parent | 4bab8964266929ec9356590db0d0fe51607c4b6b (diff) | |
download | systemtap-steved-2c5a19c6ba969d8fa30070e7579c1597a0e1c194.tar.gz systemtap-steved-2c5a19c6ba969d8fa30070e7579c1597a0e1c194.tar.xz systemtap-steved-2c5a19c6ba969d8fa30070e7579c1597a0e1c194.zip |
2008-02-13 Dave Brolley <brolley@redhat.com>
PR5609
* staptree.h (probe::collect_derivation_chain): Now takes vector<probe*>.
(probe::get_alias): New virtual method.
* elaborate.h (derived_probe::collect_derivation_chain): Now takes vector<probe*>.
* staptree.cxx (probe::collect_derivation_chain): Now takes vector<probe*>. Don't
cast 'this' to (derived_probe*).
* elaborate.cxx (derived_probe::collect_derivation_chain): Now takes vector<probe*>.
(alias_derived_probe::get_alias): New virtual method.
(alias_derived_probe::alias): New member.
(alias_expansion_builder::build): Call checkForRecursiveExpansion and emit a
diagnostic if recursion is detected. Pass alias to constructor of
alias_derived_probe.
(alias_expansion_builder::checkForRecursiveExpansion): New method.
* coveragedb.cxx: Pass vector<probe*> on all calls to collect_derivation_chain.
Diffstat (limited to 'elaborate.h')
-rw-r--r-- | elaborate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elaborate.h b/elaborate.h index b478b6d8..607f8689 100644 --- a/elaborate.h +++ b/elaborate.h @@ -118,7 +118,7 @@ struct derived_probe: public probe virtual probe_point* sole_location () const; virtual void printsig (std::ostream &o) const; void printsig_nested (std::ostream &o) const; - virtual void collect_derivation_chain (std::vector<derived_probe*> &probes_list); + virtual void collect_derivation_chain (std::vector<probe*> &probes_list); virtual void emit_probe_context_vars (translator_output*) {} // From within unparser::emit_common_header, add any extra variables |