diff options
author | fche <fche> | 2007-04-02 20:30:30 +0000 |
---|---|---|
committer | fche <fche> | 2007-04-02 20:30:30 +0000 |
commit | 2901e41a5b56517f7e3df2e5a1f60085206d17ea (patch) | |
tree | 3ca46a52ad7447372d83b73221409636e6df56dc /testsuite/systemtap.stress/current.stp | |
parent | da5bc00621edbd01f290b8f779b075d3048c99a0 (diff) | |
download | systemtap-steved-2901e41a5b56517f7e3df2e5a1f60085206d17ea.tar.gz systemtap-steved-2901e41a5b56517f7e3df2e5a1f60085206d17ea.tar.xz systemtap-steved-2901e41a5b56517f7e3df2e5a1f60085206d17ea.zip |
2007-04-02 Frank Ch. Eigler <fche@elastic.org>
* systemtap.samples/poll_map.stp, profile.stp, syscalls.stp:
Continue adopting to .inline -> .function change.
* systemtap.samples/topsys.stp, systemtap.stress/current.stp: Ditto.
Diffstat (limited to 'testsuite/systemtap.stress/current.stp')
-rw-r--r-- | testsuite/systemtap.stress/current.stp | 6 |
1 files changed, 3 insertions, 3 deletions
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() |