summaryrefslogtreecommitdiffstats
path: root/examples/small_demos/prof.stp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/small_demos/prof.stp')
-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]))
}