summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/two.stp
diff options
context:
space:
mode:
authorfche <fche>2005-06-13 14:27:49 +0000
committerfche <fche>2005-06-13 14:27:49 +0000
commit56e12059fd1e281889b708b3d351092d9e3ed0be (patch)
tree0d058b68c61782ddc2988d677c925e6be0387425 /testsuite/semok/two.stp
parentbb2e3076ea20631d4606050550bc9664204f2c62 (diff)
downloadsystemtap-steved-56e12059fd1e281889b708b3d351092d9e3ed0be.tar.gz
systemtap-steved-56e12059fd1e281889b708b3d351092d9e3ed0be.tar.xz
systemtap-steved-56e12059fd1e281889b708b3d351092d9e3ed0be.zip
2005-06-13 Frank Ch. Eigler <fche@redhat.com>
Start separating out translator-side probe point recognition. * tapsets.cxx: New file. (be_derived_probe): Support for begin/end probes. (derive_probe): Ditto. Reject anything unrecognized. * translator.cxx: Move out old code. * Makefile.am: Add new source file. * testsuite/semok/*: Switch to begin/end probes only.
Diffstat (limited to 'testsuite/semok/two.stp')
-rwxr-xr-xtestsuite/semok/two.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/semok/two.stp b/testsuite/semok/two.stp
index e68d596e..c5645d2b 100755
--- a/testsuite/semok/two.stp
+++ b/testsuite/semok/two.stp
@@ -7,7 +7,7 @@ function koo (p) {
return p + 2;
}
-probe foo {
+probe end {
bar = 2 + koo (4);
foo = bar + koo;
}