diff options
author | Christopher Faylor <me@cgf.cx> | 2006-03-21 01:37:25 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-03-21 01:37:25 +0000 |
commit | d4d63ebf22e0738e4a88f0ad53cb4e0e87ef92e3 (patch) | |
tree | f0a81671dce7a0901b26b958fff4a329b000c8d3 /winsup/cygwin/dcrt0.cc | |
parent | 3078fb4f360e44b436bafcd9e7c51f26792e34b4 (diff) | |
download | cygnal-d4d63ebf22e0738e4a88f0ad53cb4e0e87ef92e3.tar.gz cygnal-d4d63ebf22e0738e4a88f0ad53cb4e0e87ef92e3.tar.bz2 cygnal-d4d63ebf22e0738e4a88f0ad53cb4e0e87ef92e3.zip |
* dcrt0.cc (dll_crt0_0): Call SetErrorMode earlier.
* pinfo.cc (_pinfo::dup_proc_pipe): Reset wr_proc_pipe on failure. Return
previous pipe handle.
* pinfo.h (_pinfo::dup_proc_pipe): Reflect change to return value.
* spawn.cc (spawn_guts): Restore previous proc pipe on retry or if process
exits before synchronization.
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r-- | winsup/cygwin/dcrt0.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc index 0518ac28f..5f7f2708b 100644 --- a/winsup/cygwin/dcrt0.cc +++ b/winsup/cygwin/dcrt0.cc @@ -702,6 +702,8 @@ dll_crt0_0 () init_global_security (); initial_env (); + SetErrorMode (SEM_FAILCRITICALERRORS); + /* Initialize signal processing here, early, in the hopes that the creation of a thread early in the process will cause more predictability in memory layout for the main thread. */ @@ -727,7 +729,6 @@ dll_crt0_0 () if (wincap.has_security ()) OpenProcessToken (hMainProc, MAXIMUM_ALLOWED, &hProcToken); - SetErrorMode (SEM_FAILCRITICALERRORS); device::init (); do_global_ctors (&__CTOR_LIST__, 1); cygthread::init (); |