diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-01-12 21:29:37 -0500 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-01-12 21:29:37 -0500 |
commit | 794dacb8ae89cfb594112d08aa3ce5789599fa5f (patch) | |
tree | 34edc01bc726a65bc68de7f436b5808f979f39c1 /examples | |
parent | e1ef65568215f5b68074acd08339fd5fc9fa4e3b (diff) | |
parent | dc241cba4d146835d7bdc3c32133aad27cdfc8e4 (diff) | |
download | systemtap-steved-794dacb8ae89cfb594112d08aa3ce5789599fa5f.tar.gz systemtap-steved-794dacb8ae89cfb594112d08aa3ce5789599fa5f.tar.xz systemtap-steved-794dacb8ae89cfb594112d08aa3ce5789599fa5f.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/small_demos/prof.stp | 2 |
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])) } |