diff options
author | graydon <graydon> | 2005-08-02 03:17:28 +0000 |
---|---|---|
committer | graydon <graydon> | 2005-08-02 03:17:28 +0000 |
commit | a229fcd7327dc665313aee7d837bffa23fb7d355 (patch) | |
tree | eaee0fd7632aca6455771a3657f89a81e3a0440e /staptree.h | |
parent | 9e6edd108990251e64bd9d37d2324a38b88f7914 (diff) | |
download | systemtap-steved-a229fcd7327dc665313aee7d837bffa23fb7d355.tar.gz systemtap-steved-a229fcd7327dc665313aee7d837bffa23fb7d355.tar.xz systemtap-steved-a229fcd7327dc665313aee7d837bffa23fb7d355.zip |
2005-08-01 Graydon Hoare <graydon@redhat.com>
* staptree.{cxx,h} (probe_point::component): Add a ctor.
* tapsets.cxx (dwarf_derived_probe): Synthesize concrete
probe_point for matched pattern.
(dwarf_probe_type)
(dwarf_query::add_kernel_probe)
(dwarf_query::add_module_probe): Remove, they were noise.
(dwflpp::module_name_matches): Don't call get_module_dwarf().
Diffstat (limited to 'staptree.h')
-rw-r--r-- | staptree.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -390,11 +390,13 @@ struct probe_point std::string functor; literal* arg; // optional component (); + component(std::string const & f, literal * a = NULL); }; std::vector<component*> components; const token* tok; // points to first component's functor void print (std::ostream& o); probe_point (); + probe_point(std::vector<component*> const & comps,const token * t); }; std::ostream& operator << (std::ostream& o, probe_point& k); |