diff options
Diffstat (limited to 'testsuite/systemtap.samples/syscalls.stp')
-rw-r--r-- | testsuite/systemtap.samples/syscalls.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.samples/syscalls.stp b/testsuite/systemtap.samples/syscalls.stp index 670b239d..68e0348a 100644 --- a/testsuite/systemtap.samples/syscalls.stp +++ b/testsuite/systemtap.samples/syscalls.stp @@ -1,7 +1,7 @@ #! stap global count -probe kernel.function("sys_*") { +probe kernel.function("sys_*").call { print (sprint(pid()) . " " . pp() . "\n") if (++count > 100) exit() } |