summaryrefslogtreecommitdiffstats
path: root/top-rpccalls.stp
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2008-09-10 10:49:47 -0400
committerSteve Dickson <steved@redhat.com>2008-09-10 10:49:47 -0400
commit85014ffa32c9c07487fa729d81a0795c4c3ea8c4 (patch)
tree037847509fe8f4253f8801a473a99c9292f79893 /top-rpccalls.stp
parent3fc0e545a2aa1a2a3717cb3fc652f8876a03c073 (diff)
downloadsystemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.tar.gz
systemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.tar.xz
systemtap-85014ffa32c9c07487fa729d81a0795c4c3ea8c4.zip
Cleaned up the top-* scripts
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'top-rpccalls.stp')
-rwxr-xr-xtop-rpccalls.stp6
1 files changed, 3 insertions, 3 deletions
diff --git a/top-rpccalls.stp b/top-rpccalls.stp
index 06de8e5..477cd06 100755
--- a/top-rpccalls.stp
+++ b/top-rpccalls.stp
@@ -13,8 +13,8 @@ probe kernel.function("*@net/sunrpc") ?,
}
probe end {
- printf("prob end:\n")
- foreach (name in rpccalls- limit 40)
- printf("%10d %s\n", rpccalls[name], name)
+ printf("Collating data...\n");
+ foreach (name in rpccalls- limit 40)
+ printf("%10d %s\n", rpccalls[name], name)
}