From 396afcee5ada2d207b7a6691d4b7ce473e7b2a65 Mon Sep 17 00:00:00 2001 From: fche Date: Mon, 2 Apr 2007 21:17:35 +0000 Subject: 2007-04-02 Frank Ch. Eigler * tapsets.cxx (query_dwarf_func): Skip non-inlined functions for .function().inline case. 2007-04-02 Frank Ch. Eigler * socket-trace.stp, small_demos/prof.stp, top.stp: Adapt to .inline -> .function change. * semko/twentyone.stp: Ditto. --- testsuite/semko/twentyone.stp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuite/semko') diff --git a/testsuite/semko/twentyone.stp b/testsuite/semko/twentyone.stp index c01725e2..910fc2c9 100755 --- a/testsuite/semko/twentyone.stp +++ b/testsuite/semko/twentyone.stp @@ -1,8 +1,8 @@ #! stap -p2 # tests that an inline function is *not* matched using -# the function() pattern +# the function().call pattern -probe kernel.function("context_switch") { - log ("found an inline via function()") +probe kernel.function("context_switch").call { + log ("found an inline via function().call") } -- cgit