From 37ebca01742fea41602ecb5b471d3367a1e2c64b Mon Sep 17 00:00:00 2001 From: fche Date: Thu, 22 Mar 2007 20:54:27 +0000 Subject: 2007-03-22 Frank Ch. Eigler PR 4224. * staptree.h (probe): Add privileged field. * elaborate.cxx, parse.cxx: Pass privileged flag to probes. * tapsets.cxx (dwarf_query): Add has_absolute field. (dwarf_derived_probe ctor): Tolerate it. (register_patterns): Expose it. (dwarf_builder::build): Implement it with no dwfl whatsoever. * NEWS: Document kernel.statement().absolute. * stapprobes.5.in: Ditto. 2007-03-22 Frank Ch. Eigler PR 4224. * systemtap.base/probefunc.exp: Use kernel.statement().absolute instead with grep-found schedule_tick address. * semko/thirtyseven.stp, thirtyeight.stp: New tests. * buildok/twentyeight.stp: New test. 2007-03-22 Frank Ch. Eigler * sym.c (_stp_module_relocate): Tolerate empty section string. --- elaborate.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'elaborate.cxx') diff --git a/elaborate.cxx b/elaborate.cxx index c2e57856..04eb1fa2 100644 --- a/elaborate.cxx +++ b/elaborate.cxx @@ -41,6 +41,7 @@ derived_probe::derived_probe (probe *p): { this->locations = p->locations; this->tok = p->tok; + this->privileged = p->privileged; this->body = deep_copy_visitor::deep_copy(p->body); } } @@ -55,6 +56,7 @@ derived_probe::derived_probe (probe *p, probe_point *l): if (p) { this->tok = p->tok; + this->privileged = p->privileged; this->body = deep_copy_visitor::deep_copy(p->body); } } -- cgit