* dcrt0.cc (alloc_stack_hard_way): Revert to previous implementation.

(alloc_stack): Ditto.
* exceptions.cc (ctrl_c_handler): Add debugging output.
This commit is contained in:
Christopher Faylor
2004-02-14 04:38:37 +00:00
parent e6ea2b9671
commit c21e74cce8
5 changed files with 22 additions and 14 deletions

View File

@ -829,7 +829,10 @@ ctrl_c_handler (DWORD type)
static bool saw_close;
if (!cygwin_finished_initializing)
ExitProcess (STATUS_CONTROL_C_EXIT);
{
debug_printf ("exiting with status %p", STATUS_CONTROL_C_EXIT);
ExitProcess (STATUS_CONTROL_C_EXIT);
}
_my_tls.remove (INFINITE);