]> sourceware.org Git - systemtap-htdocs.git/commitdiff
correct time units, from Chris Snook
authorfche <fche>
Sat, 12 Jan 2008 03:40:47 +0000 (03:40 +0000)
committerfche <fche>
Sat, 12 Jan 2008 03:40:47 +0000 (03:40 +0000)
examples/prof.stp

index 986be65ef2a89f0872bd6d23f554f9dd117e739b..9703d36dc98e4761d36542359bbf136de470ff4e 100755 (executable)
@@ -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]))
 }
 
This page took 0.025839 seconds and 5 git commands to generate.