summaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2009-08-18 20:12:57 -0400
committerFrank Ch. Eigler <fche@elastic.org>2009-08-18 20:15:19 -0400
commit2531fc1e953b32d7d327da8a9b39ba540789f795 (patch)
tree687c3ca8a5813f25713f49a3c3a3796d516faf76 /NEWS
parenteb3072d5cc7df78de48a9b0e62c7355082ca1dac (diff)
downloadsystemtap-steved-2531fc1e953b32d7d327da8a9b39ba540789f795.tar.gz
systemtap-steved-2531fc1e953b32d7d327da8a9b39ba540789f795.tar.xz
systemtap-steved-2531fc1e953b32d7d327da8a9b39ba540789f795.zip
PR10495: allow multiple probe aliases with same name
* elaborate.cxx (match_node::bind): Change ->end to ->ends[] vector. (find_and_build,build_no_more): Iterate over ends[]. * elaborate.h: Corresponding changes. * testsuite/semok/thirtyfour.stp: New test. * NEWS, doc/langref.tex: Note this.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 2ce02736..f07acd9f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,11 @@
* What's new
+- It is now possible to define multiple probe aliases with the same name.
+ A probe will expand to all matching aliases.
+ probe foo = bar { }
+ probe foo = baz { }
+ probe foo { } # expands twice, once to bar and once to baz
+
- Support for unprivileged users:
*****************************************************************************
* WARNING!!!!!!!!!!