diff options
author | Dave Brolley <brolley@redhat.com> | 2009-04-06 11:40:01 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-04-06 11:40:01 -0400 |
commit | 25ca9e9568b33bb244cfb77d924bd0b0ccbab6a0 (patch) | |
tree | 6b6fbc681a5438788e19ed8879e150a72affbfc9 /testsuite/systemtap.examples/io/ioblktime.stp | |
parent | faf38cd9bd782cf460b2b46f29a6922205b0eab1 (diff) | |
parent | a03c97419b5192fd594afb1f84e9ae4d0801e3a9 (diff) | |
download | systemtap-steved-25ca9e9568b33bb244cfb77d924bd0b0ccbab6a0.tar.gz systemtap-steved-25ca9e9568b33bb244cfb77d924bd0b0ccbab6a0.tar.xz systemtap-steved-25ca9e9568b33bb244cfb77d924bd0b0ccbab6a0.zip |
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.examples/io/ioblktime.stp')
-rwxr-xr-x | testsuite/systemtap.examples/io/ioblktime.stp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/systemtap.examples/io/ioblktime.stp b/testsuite/systemtap.examples/io/ioblktime.stp index 5ff59cf7..d6267b3e 100755 --- a/testsuite/systemtap.examples/io/ioblktime.stp +++ b/testsuite/systemtap.examples/io/ioblktime.stp @@ -18,7 +18,7 @@ probe ioblock.end } probe timer.s(10), end { - printf("\033[2J\033[1;1H") /* clear screen */ + ansi_clear_screen() printf("%10s %3s %10s %10s %10s\n", "device", "rw", "total (us)", "count", "avg (us)") foreach ([dev,rw] in etimes - limit 20) { |