From efa3ced615cc67cf6d51947a58da6151ae86afb4 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 18 Jul 2014 15:51:47 -0700 Subject: [PATCH] Fix nd_syscalls use in syscalls_by_pid.stp --- testsuite/systemtap.examples/process/syscalls_by_pid.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/systemtap.examples/process/syscalls_by_pid.stp b/testsuite/systemtap.examples/process/syscalls_by_pid.stp index a82e2c3bb..06ed7b727 100755 --- a/testsuite/systemtap.examples/process/syscalls_by_pid.stp +++ b/testsuite/systemtap.examples/process/syscalls_by_pid.stp @@ -17,8 +17,8 @@ probe begin { print ("Collecting data... Type Ctrl-C to exit and display results\n") } -probe syscall.* { - nd_syscalls[pid()]++ +probe nd_syscall.* { + syscalls[pid()]++ } probe end { -- 2.43.5