From 3a66ad568254853a195035bd8deca3d38dde27d2 Mon Sep 17 00:00:00 2001 From: Ananth N Mavinakayanahalli Date: Wed, 11 Feb 2009 11:21:46 +0530 Subject: Probe only calls and not inlines in functioncallcount.stp --- testsuite/systemtap.examples/profiling/functioncallcount.stp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testsuite/systemtap.examples/profiling/functioncallcount.stp') 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 } -- cgit