diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-06 08:40:30 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-06 08:40:30 +0000 |
commit | 04f36c2bba797225f0ab8f2bd83de86e1203ac47 (patch) | |
tree | 92055143e8d1ef22277637802fff499dd1e06d09 /process.c | |
parent | 35091fdda5bb3aa55d49c1c6bf20964a7a920bee (diff) |
* rubyio.h, intern.h, io.c, file.c, process.c, ext/socket/socket.c,
ext/pty/pty.c, ext/io/wait/wait.c, ext/openssl/ossl_ssl.c:
Use own buffering mechanism instead of stdio.
* io.c, ext/stringio/stringio.c, test/ruby/ut_eof.rb:
EOF flag removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7473 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1349,8 +1349,8 @@ rb_fork(status, chfunc, charg) #endif #ifndef __VMS - fflush(stdout); - fflush(stderr); + rb_io_flush(rb_stdout); + rb_io_flush(rb_stderr); #endif #ifdef FD_CLOEXEC |