You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is just because Rubinius does it in common/io.rb IO#setup.
MRI and JRuby do not and "follow" standard UNIX programs having unbuffered STDERR, but buffered (by line on TTY, by block otherwise) STDOUT (at the FILE* level, see setvbuf(3)).
I am not sure what is best but this could potentially be a IO perf issue.
The text was updated successfully, but these errors were encountered:
This is just because Rubinius does it in common/io.rb
IO#setup
.MRI and JRuby do not and "follow" standard UNIX programs having unbuffered STDERR, but buffered (by line on TTY, by block otherwise) STDOUT (at the
FILE*
level, seesetvbuf(3)
).I am not sure what is best but this could potentially be a IO perf issue.
The text was updated successfully, but these errors were encountered: