From 2901e41a5b56517f7e3df2e5a1f60085206d17ea Mon Sep 17 00:00:00 2001 From: fche Date: Mon, 2 Apr 2007 20:30:30 +0000 Subject: 2007-04-02 Frank Ch. Eigler * systemtap.samples/poll_map.stp, profile.stp, syscalls.stp: Continue adopting to .inline -> .function change. * systemtap.samples/topsys.stp, systemtap.stress/current.stp: Ditto. --- testsuite/systemtap.stress/current.stp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testsuite/systemtap.stress/current.stp') diff --git a/testsuite/systemtap.stress/current.stp b/testsuite/systemtap.stress/current.stp index 40673581..ddc298d4 100644 --- a/testsuite/systemtap.stress/current.stp +++ b/testsuite/systemtap.stress/current.stp @@ -23,7 +23,7 @@ probe %( arch != "ia64" %? # __switch_to is macro definition in ia64, # and ia64_switch_to is defined in assemble language - kernel.function("__switch_to"), + kernel.function("__switch_to").call, kernel.function("__switch_to").return, %) %) @@ -50,9 +50,9 @@ probe %) %) - kernel.function("*@kernel/sched.c"), + kernel.function("*@kernel/sched.c").call, kernel.function("*@kernel/sched.c").return, - module("*").function("*interrupt*"), + module("*").function("*interrupt*").call, module("*").function("*interrupt*").return { length <<< commlen() -- cgit