diff options
author | Ananth N Mavinakayanahalli <ananth@in.ibm.com> | 2009-02-11 11:21:46 +0530 |
---|---|---|
committer | Ananth N Mavinakayanahalli <ananth@in.ibm.com> | 2009-02-11 11:21:46 +0530 |
commit | 3a66ad568254853a195035bd8deca3d38dde27d2 (patch) | |
tree | d35005e39fc645599856a5f786eb0b6cb33b0f27 /testsuite | |
parent | 8040a4b42cd0fc66142d3ef2f905ea0267726b76 (diff) | |
download | systemtap-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-x | testsuite/systemtap.examples/profiling/functioncallcount.stp | 2 |
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 } |