diff options
author | Christopher Faylor <me@cgf.cx> | 2004-02-14 04:38:37 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-02-14 04:38:37 +0000 |
commit | c21e74cce84389cfbde36b355b8c60810a40ee0c (patch) | |
tree | 18b42fb18d0a096e245786ff4aa1e52f2b792388 /winsup/cygwin/exceptions.cc | |
parent | e6ea2b96713e786f0f06e285ca8b226d7f8ec8ac (diff) | |
download | cygnal-c21e74cce84389cfbde36b355b8c60810a40ee0c.tar.gz cygnal-c21e74cce84389cfbde36b355b8c60810a40ee0c.tar.bz2 cygnal-c21e74cce84389cfbde36b355b8c60810a40ee0c.zip |
* dcrt0.cc (alloc_stack_hard_way): Revert to previous implementation.
(alloc_stack): Ditto.
* exceptions.cc (ctrl_c_handler): Add debugging output.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 118223e03..7bc7c7775 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -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); |