diff options
author | sebres <sebres@users.sourceforge.net> | 2024-01-29 11:06:36 (GMT) |
---|---|---|
committer | sebres <sebres@users.sourceforge.net> | 2024-01-29 11:06:36 (GMT) |
commit | cd529a89c5b995d312b41d0b7c9054d678ee8745 (patch) | |
tree | eb31c61fe934bd09936517e851afe452ba856c97 | |
parent | b7a1eb041b44a45583bfb65712826a9967cc147c (diff) | |
download | tcl-cd529a89c5b995d312b41d0b7c9054d678ee8745.zip tcl-cd529a89c5b995d312b41d0b7c9054d678ee8745.tar.gz tcl-cd529a89c5b995d312b41d0b7c9054d678ee8745.tar.bz2 |
don't flush to use full buffer (otherwise the chunks were 4K anyway)
-rw-r--r-- | tests-perf/chan.perf.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-perf/chan.perf.tcl b/tests-perf/chan.perf.tcl index b3bd1c4..2ef87cb 100644 --- a/tests-perf/chan.perf.tcl +++ b/tests-perf/chan.perf.tcl @@ -38,7 +38,7 @@ proc _get_test_chan {{bufSize 4096}} { set i 0; while {$i < int((10*1e6 + 10*2e6 + 10*10e6 + 1*20e6)/4e3)} { #puts -nonewline stdout $i\t puts stdout $buf - flush stdout + #flush stdout; # don't flush to use full buffer incr i } } & |