diff options
author | wenji <wjhuang@dhcp-beijing-cdc-10-182-120-233.cn.oracle.com> | 2008-04-10 21:29:51 -0400 |
---|---|---|
committer | wenji <wjhuang@dhcp-beijing-cdc-10-182-120-233.cn.oracle.com> | 2008-04-10 21:29:51 -0400 |
commit | d58c66bfef5cfa7267ced03db11928fd5c78ba9c (patch) | |
tree | 8c7065afbd175ab315f391318a6dd7f9bb229fb9 /elaborate.h | |
parent | f317d3a33bdf4962b0655861e4552b5fec0f0a37 (diff) | |
parent | ec5d7273b73c56dacb4ac9b167186ff1ea964e63 (diff) | |
download | systemtap-steved-d58c66bfef5cfa7267ced03db11928fd5c78ba9c.tar.gz systemtap-steved-d58c66bfef5cfa7267ced03db11928fd5c78ba9c.tar.xz systemtap-steved-d58c66bfef5cfa7267ced03db11928fd5c78ba9c.zip |
Merge branch 'master' of ssh://wenji@sources.redhat.com/git/systemtap
Diffstat (limited to 'elaborate.h')
-rw-r--r-- | elaborate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/elaborate.h b/elaborate.h index fc8fbbcb..30bf5bce 100644 --- a/elaborate.h +++ b/elaborate.h @@ -114,6 +114,8 @@ struct derived_probe: public probe derived_probe (probe* b, probe_point* l); probe* base; // the original parsed probe virtual probe* basest () { return base->basest(); } + // XXX: might be helpful for listing and stepwise expansion, but aliases/wildcards don't show up right + // virtual probe* almost_basest () { probe* bb = base->basest(); return (bb == base) ? this : bb; } virtual ~derived_probe () {} virtual void join_group (systemtap_session& s) = 0; virtual probe_point* sole_location () const; |