summaryrefslogtreecommitdiffstats
path: root/staptree.h
diff options
context:
space:
mode:
authorfche <fche>2008-01-25 19:05:46 +0000
committerfche <fche>2008-01-25 19:05:46 +0000
commit1939ea3217ce8b8fae35e4a70f4cd5c1c431e438 (patch)
tree033397a7d7c8399aaf3cb0d339dd0480b8026725 /staptree.h
parent7760bbfb5f7060d20c4525827bb74284392cb6e9 (diff)
downloadsystemtap-steved-1939ea3217ce8b8fae35e4a70f4cd5c1c431e438.tar.gz
systemtap-steved-1939ea3217ce8b8fae35e4a70f4cd5c1c431e438.tar.xz
systemtap-steved-1939ea3217ce8b8fae35e4a70f4cd5c1c431e438.zip
PR 5672: fix generated dwarf probe point names from wildcards
2008-01-25 Frank Ch. Eigler <fche@elastic.org> PR 5672. * staptree.cxx (probe_point copy ctor): New function. * staptree.h: Declare it. * tapsets.cxx (dwarf_derived_probe ctor): Call it to shallow-copy incoming base probe location before recomputing/overwriting it.
Diffstat (limited to 'staptree.h')
-rw-r--r--staptree.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/staptree.h b/staptree.h
index 5b4b56cd..54194c7b 100644
--- a/staptree.h
+++ b/staptree.h
@@ -577,6 +577,7 @@ struct probe_point
expression* condition;
void print (std::ostream& o) const;
probe_point ();
+ probe_point(const probe_point& pp);
probe_point(std::vector<component*> const & comps,const token * t);
std::string str();
};