diff options
author | William Cohen <wcohen@redhat.com> | 2008-12-09 11:20:11 -0500 |
---|---|---|
committer | William Cohen <wcohen@redhat.com> | 2008-12-09 11:20:11 -0500 |
commit | 4ffc629674ac7d1d84b93cb7fdca71953983f762 (patch) | |
tree | dca338602903ba87b69592b40faa35ca74b7966e /testsuite/systemtap.examples/process/syscalls_by_proc.stp | |
parent | 73dc0c77745ee09db15542c14f7e048f91e121e6 (diff) | |
download | systemtap-steved-4ffc629674ac7d1d84b93cb7fdca71953983f762.tar.gz systemtap-steved-4ffc629674ac7d1d84b93cb7fdca71953983f762.tar.xz systemtap-steved-4ffc629674ac7d1d84b93cb7fdca71953983f762.zip |
Tweak formatting, indent two space.
Diffstat (limited to 'testsuite/systemtap.examples/process/syscalls_by_proc.stp')
-rwxr-xr-x | testsuite/systemtap.examples/process/syscalls_by_proc.stp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/systemtap.examples/process/syscalls_by_proc.stp b/testsuite/systemtap.examples/process/syscalls_by_proc.stp index af7d6932..ca5f1c01 100755 --- a/testsuite/systemtap.examples/process/syscalls_by_proc.stp +++ b/testsuite/systemtap.examples/process/syscalls_by_proc.stp @@ -14,15 +14,15 @@ global syscalls probe begin { - print ("Collecting data... Type Ctrl-C to exit and display results\n") + print ("Collecting data... Type Ctrl-C to exit and display results\n") } probe syscall.* { - syscalls[execname()]++ + syscalls[execname()]++ } probe end { - printf ("%-10s %-s\n", "#SysCalls", "Process Name") - foreach (proc in syscalls-) - printf("%-10d %-s\n", syscalls[proc], proc) + printf ("%-10s %-s\n", "#SysCalls", "Process Name") + foreach (proc in syscalls-) + printf("%-10d %-s\n", syscalls[proc], proc) } |