summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli <ananth@in.ibm.com>2009-02-11 11:21:46 +0530
committerAnanth N Mavinakayanahalli <ananth@in.ibm.com>2009-02-11 11:21:46 +0530
commit3a66ad568254853a195035bd8deca3d38dde27d2 (patch)
treed35005e39fc645599856a5f786eb0b6cb33b0f27 /testsuite
parent8040a4b42cd0fc66142d3ef2f905ea0267726b76 (diff)
downloadsystemtap-steved-3a66ad568254853a195035bd8deca3d38dde27d2.tar.gz
systemtap-steved-3a66ad568254853a195035bd8deca3d38dde27d2.tar.xz
systemtap-steved-3a66ad568254853a195035bd8deca3d38dde27d2.zip
Probe only calls and not inlines in functioncallcount.stp
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/systemtap.examples/profiling/functioncallcount.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.examples/profiling/functioncallcount.stp b/testsuite/systemtap.examples/profiling/functioncallcount.stp
index 9e9ec3fd..31eaee70 100755
--- a/testsuite/systemtap.examples/profiling/functioncallcount.stp
+++ b/testsuite/systemtap.examples/profiling/functioncallcount.stp
@@ -4,7 +4,7 @@
#
# stap functioncallcount.stp "*@mm/*.c"
-probe kernel.function(@1) { # probe functions listed on commandline
+probe kernel.function(@1).call { # probe functions listed on commandline
called[probefunc()] <<< 1 # add a count efficiently
}