summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/dcrt0.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2006-01-05 16:21:14 +0000
committerChristopher Faylor <me@cgf.cx>2006-01-05 16:21:14 +0000
commitc29df6c37535e0febb33bd2343c4693125cc3e04 (patch)
tree1b8c402f01b2174feb8eec99841de16ced9482b3 /winsup/cygwin/dcrt0.cc
parent4c3faa85cef1d76b90ec014172b014494f76248c (diff)
downloadcygnal-c29df6c37535e0febb33bd2343c4693125cc3e04.tar.gz
cygnal-c29df6c37535e0febb33bd2343c4693125cc3e04.tar.bz2
cygnal-c29df6c37535e0febb33bd2343c4693125cc3e04.zip
* spawn.cc (spawn_guts): Invert the argument to set_console_state_for_spawn.
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r--winsup/cygwin/dcrt0.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc
index bfb671aea..b786dbf75 100644
--- a/winsup/cygwin/dcrt0.cc
+++ b/winsup/cygwin/dcrt0.cc
@@ -951,15 +951,14 @@ initialize_main_tls (char *padding)
extern "C" void __stdcall
_dll_crt0 ()
{
- extern DWORD threadfunc_ix;
extern HANDLE sync_startup;
+ extern DWORD threadfunc_ix;
if (sync_startup != INVALID_HANDLE_VALUE)
{
WaitForSingleObject (sync_startup, INFINITE);
CloseHandle (sync_startup);
}
- sync_startup = NULL;
if (!threadfunc_ix)
system_printf ("internal error: couldn't determine location of thread function on stack. Expect signal problems.");