summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2008-01-12 03:40:08 +0000
committerfche <fche>2008-01-12 03:40:08 +0000
commit8eab8950e173632eaf36bd69365ef51a6804fc84 (patch)
tree1c855c3de1b2537685340f94b08e619d74ed72cf
parent1d2e0a6c92de23d371f6e6ecf8455ff821ebdcd4 (diff)
downloadsystemtap-steved-8eab8950e173632eaf36bd69365ef51a6804fc84.tar.gz
systemtap-steved-8eab8950e173632eaf36bd69365ef51a6804fc84.tar.xz
systemtap-steved-8eab8950e173632eaf36bd69365ef51a6804fc84.zip
correct displayed time units
From: Chris Snook
-rwxr-xr-xexamples/small_demos/prof.stp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/small_demos/prof.stp b/examples/small_demos/prof.stp
index e08aa21c..389f743a 100755
--- a/examples/small_demos/prof.stp
+++ b/examples/small_demos/prof.stp
@@ -28,7 +28,7 @@ probe kernel.function("sys_*").return {
probe end {
printf("\n")
foreach (x in ttime)
- printf("%-20s\tcalls:%6d\tavg time (ms):%5d\ttotal(ms):%7d\n",
+ printf("%-20s\tcalls:%6d\tavg time (us):%5d\ttotal(us):%7d\n",
x, @count(ttime[x]), @avg(ttime[x]), @sum(ttime[x]))
}