Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-06-08 23:45:39 +0400
committerCorinna Vinschen <corinna@vinschen.de>2009-06-08 23:45:39 +0400
commit3b80aa0156e694e8204228ef0dd0639d77997dbf (patch)
treeb68f0f4bb53fc2831fb2da87d274231f00bc1dbd /winsup/cygwin/fork.cc
parentc84bbb2d8f960ad66ed2b6737b325002c714338a (diff)
* fork.cc (frok::parent): Remove ancient code erroneously flushing
stdout descriptor.
Diffstat (limited to 'winsup/cygwin/fork.cc')
-rw-r--r--winsup/cygwin/fork.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc
index 3692a7a54..6911da5cd 100644
--- a/winsup/cygwin/fork.cc
+++ b/winsup/cygwin/fork.cc
@@ -307,10 +307,6 @@ frok::parent (volatile char * volatile stack_here)
in the parent and, when the stack is copied, in the child. */
load_dlls = dlls.reload_on_fork && dlls.loaded_dlls;
- /* This will help some of the confusion. */
- /* FIXME: Is this really appropriate? What if stdout is closed? */
- fflush (stdout);
-
forker_finished = CreateEvent (&sec_all, FALSE, FALSE, NULL);
if (forker_finished == NULL)
{