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:
authorChristopher Faylor <me@cgf.cx>2005-08-11 20:30:48 +0400
committerChristopher Faylor <me@cgf.cx>2005-08-11 20:30:48 +0400
commitb21413b3042eb28cc4ac7e182426e1548eea62a5 (patch)
treea6f57fed095b6b90419c316b69106632d2132edd /winsup/cygwin/fork.cc
parentff7bdd11f5006425b408e4c9f324db85cda6c1d7 (diff)
* dcrt0.cc: Remove ld_preload declaration.
* winsup.h: Move ld_preload declaration here. * fork.cc (fork_child): Call ld_preload() before returning.
Diffstat (limited to 'winsup/cygwin/fork.cc')
-rw-r--r--winsup/cygwin/fork.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc
index 6ed515b64..785aabd4f 100644
--- a/winsup/cygwin/fork.cc
+++ b/winsup/cygwin/fork.cc
@@ -242,6 +242,7 @@ fork_child (HANDLE& hParent, dll *&first_dll, bool& load_dlls)
fixup_timers_after_fork ();
fixup_hooks_after_fork ();
cygbench ("fork-child");
+ ld_preload ();
cygwin_finished_initializing = true;
return 0;
}