diff options
author | Christopher Faylor <me@cgf.cx> | 2002-07-13 21:08:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-07-13 21:08:13 +0000 |
commit | c03dba93d622f3d81d0c5ccea96f67f095de2631 (patch) | |
tree | 6988b4251f344a3fb43bda0e76189aab7159b89b /winsup/cygwin/exceptions.cc | |
parent | 0301bfd0ac66697d974d3855cbf1ebb900c70932 (diff) | |
download | cygnal-c03dba93d622f3d81d0c5ccea96f67f095de2631.tar.gz cygnal-c03dba93d622f3d81d0c5ccea96f67f095de2631.tar.bz2 cygnal-c03dba93d622f3d81d0c5ccea96f67f095de2631.zip |
* dcrt0.cc (dll_crt0_1): Delay closing of some handles until cygheap has been
set up.
(break_here): New function, for debugging.
(initial_env): Add program name to "Sleeping" message. Implement new
"CYGWIN_DEBUG" environment variable option.
* exceptions.cc (debugger_command): Add argument to dumper call.
* strace.cc (strace::hello): Use winpid if cygwin pid is unavailable.
(strace::vsprntf): Ditto.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index e2f10ae3d..cd0bb2586 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -25,7 +25,7 @@ details. */ #define CALL_HANDLER_RETRY 20 -char debugger_command[2 * MAX_PATH + 20] = "dumper.exe"; +char debugger_command[2 * MAX_PATH + 20] = "dumper.exe %s"; extern "C" { static int handle_exceptions (EXCEPTION_RECORD *, void *, CONTEXT *, void *); |