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>2006-01-05 19:21:14 +0300
committerChristopher Faylor <me@cgf.cx>2006-01-05 19:21:14 +0300
commitc29df6c37535e0febb33bd2343c4693125cc3e04 (patch)
tree1b8c402f01b2174feb8eec99841de16ced9482b3
parent4c3faa85cef1d76b90ec014172b014494f76248c (diff)
* spawn.cc (spawn_guts): Invert the argument to set_console_state_for_spawn.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/dcrt0.cc3
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index c4d349fd5..ee44a4d19 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-05 Igor Peshansky <pechtcha@cs.nyu.edu>
+
+ * spawn.cc (spawn_guts): Invert the argument to
+ set_console_state_for_spawn.
+
2006-01-04 Christopher Faylor <cgf@timesys.com>
* fhandler_console.cc (fhandler_console::need_invisible): Only try to
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.");