]> sourceware.org Git - systemtap.git/commitdiff
Fix nd_syscalls use in syscalls_by_pid.stp
authorJosh Stone <jistone@redhat.com>
Fri, 18 Jul 2014 22:51:47 +0000 (15:51 -0700)
committerJosh Stone <jistone@redhat.com>
Fri, 18 Jul 2014 22:51:47 +0000 (15:51 -0700)
testsuite/systemtap.examples/process/syscalls_by_pid.stp

index a82e2c3bb5fb50ae7e1651b736c9bf4c75112a65..06ed7b72776d6783de811649eb91dc2101b214ea 100755 (executable)
@@ -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 {
This page took 0.030191 seconds and 5 git commands to generate.