From 4e8d491b9024549fd8237531e4dab5f72af5704a Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 2 Nov 2004 07:13:02 +0000 Subject: * process.c (rb_f_fork): need to flush stdout and stderr before fork(2). [ruby-talk:117715] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7180 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- process.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'process.c') diff --git a/process.c b/process.c index b7adec401e..004a35141d 100644 --- a/process.c +++ b/process.c @@ -1257,6 +1257,12 @@ rb_f_fork(obj) int pid; rb_secure(2); + +#ifndef __VMS + fflush(stdout); + fflush(stderr); +#endif + switch (pid = fork()) { case 0: #ifdef linux -- cgit v1.2.3