OSDN Git Service

* fork.cc (fork_child): Call fixup_mmaps_after_fork() somewhat earlier.
authorcorinna <corinna>
Tue, 9 Apr 2002 16:33:12 +0000 (16:33 +0000)
committercorinna <corinna>
Tue, 9 Apr 2002 16:33:12 +0000 (16:33 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/fork.cc

index 5c87b47..359cf71 100644 (file)
@@ -1,5 +1,9 @@
 2002-04-09  Corinna Vinschen  <corinna@vinschen.de>
 
+       * fork.cc (fork_child): Call fixup_mmaps_after_fork() somewhat earlier.
+
+2002-04-09  Corinna Vinschen  <corinna@vinschen.de>
+
        * fhandler.cc (fhandler_base::open): Set read-only bit in
        file_attributes when adequate.
 
index 03d17ee..66f2d22 100644 (file)
@@ -284,6 +284,9 @@ fork_child (HANDLE& hParent, dll *&first_dll, bool& load_dlls)
 
   MALLOC_CHECK;
 
+  if (fixup_mmaps_after_fork (hParent))
+    api_fatal ("recreate_mmaps_after_fork_failed");
+
   /* If we haven't dynamically loaded any dlls, just signal
      the parent.  Otherwise, load all the dlls, tell the parent
       that we're done, and wait for the parent to fill in the.
@@ -296,9 +299,6 @@ fork_child (HANDLE& hParent, dll *&first_dll, bool& load_dlls)
       sync_with_parent ("loaded dlls", TRUE);
     }
 
-  if (fixup_mmaps_after_fork (hParent))
-    api_fatal ("recreate_mmaps_after_fork_failed");
-
   ForceCloseHandle (hParent);
   (void) ForceCloseHandle (child_proc_info->subproc_ready);
   (void) ForceCloseHandle (child_proc_info->forker_finished);