diff options
author | Christopher Faylor <me@cgf.cx> | 2004-01-19 23:03:43 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-01-19 23:03:43 +0000 |
commit | d795119cbe7e421ef84df059d5cd26ddc73c31b3 (patch) | |
tree | 3cd0736f67a59f8639db75dbba7bcfd5f776c526 /winsup/cygwin/dcrt0.cc | |
parent | 403f752cb26c161ca80bdab4981640316f67ed39 (diff) | |
download | cygnal-d795119cbe7e421ef84df059d5cd26ddc73c31b3.tar.gz cygnal-d795119cbe7e421ef84df059d5cd26ddc73c31b3.tar.bz2 cygnal-d795119cbe7e421ef84df059d5cd26ddc73c31b3.zip |
* sigproc.cc (sigproc_terminate): Don't close sendsig handle when execing since
we're not closing what we think we're closing.
(sig_send): Improve debugging when exiting due to no_signals_available.
* wincap.h (wincaps::cant_debug_dll_entry): New element.
* wincap.cc: Implement above element throughout.
* dcrt0.cc (initial_env): Accommodate changes necessary to allow initial
debugging for systems which do not allow debugging in dll_entry.
(dll_crt0_0): Add initial_env call back here.
* Makefile.in (install-man): Use mandir as target for installation.
* include/cygwin/version.h: Bump DLL minor number to 7 (should have been done
earlier).
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r-- | winsup/cygwin/dcrt0.cc | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc index 29d11f8e4..96b712c17 100644 --- a/winsup/cygwin/dcrt0.cc +++ b/winsup/cygwin/dcrt0.cc @@ -531,11 +531,20 @@ break_here () #endif static void -initial_env () +initial_env (bool first) { char buf[CYG_MAX_PATH + 1]; + if (!first) + /* nothing */; + else if (GetEnvironmentVariable ("CYGWIN_TESTING", buf, sizeof (buf) - 1)) + _cygwin_testing = 1; #ifdef DEBUGGING DWORD len; + static bool NO_COPY did_debugging_stuff; + if (did_debugging_stuff || (first && wincap.cant_debug_dll_entry ())) + return; + + did_debugging_stuff = true; if (GetEnvironmentVariable ("CYGWIN_SLEEP", buf, sizeof (buf) - 1)) { DWORD ms = atoi (buf); @@ -569,14 +578,13 @@ initial_env () } #endif - if (GetEnvironmentVariable ("CYGWIN_TESTING", buf, sizeof (buf) - 1)) - _cygwin_testing = 1; } void __stdcall dll_crt0_0 () { wincap.init (); + initial_env (true); char zeros[sizeof (child_proc_info->zero)] = {0}; @@ -722,7 +730,7 @@ dll_crt0_1 (char *) /* FIXME: Verify forked children get their exception handler set up ok. */ exception_list cygwin_except_entry; - initial_env (); + initial_env (false); check_sanity_and_sync (user_data); malloc_init (); |