summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/how-to-debug-cygwin.txt
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-07-13 21:08:13 +0000
committerChristopher Faylor <me@cgf.cx>2002-07-13 21:08:13 +0000
commitc03dba93d622f3d81d0c5ccea96f67f095de2631 (patch)
tree6988b4251f344a3fb43bda0e76189aab7159b89b /winsup/cygwin/how-to-debug-cygwin.txt
parent0301bfd0ac66697d974d3855cbf1ebb900c70932 (diff)
downloadcygnal-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/how-to-debug-cygwin.txt')
-rw-r--r--winsup/cygwin/how-to-debug-cygwin.txt13
1 files changed, 13 insertions, 0 deletions
diff --git a/winsup/cygwin/how-to-debug-cygwin.txt b/winsup/cygwin/how-to-debug-cygwin.txt
index 52e85c30e..100e9ac34 100644
--- a/winsup/cygwin/how-to-debug-cygwin.txt
+++ b/winsup/cygwin/how-to-debug-cygwin.txt
@@ -71,6 +71,19 @@ c:\some\path\bad_program.exe some parameters
After that you can normally step through the code in cygwin1.dll and
bad_program.exe
+ You can also set a CYGWIN_DEBUG variable to force the debugger to pop up
+ only when a certain program is run:
+
+set CYGWIN_DEBUG=cat.exe=gdb.exe
+
+ This will force gdb.exe to start when the program name contains the string
+ "cat.exe". The '=gdb.exe' isn't really needed, since it is the default.
+ It is just there to show how you can specify a program to run when the
+ program starts.
+
+ Note that it bears repeating that both of the above options are *only*
+ available when configuring cygwin with --enable-debugging.
+
6. Heap corruption.
If your program crashes at malloc() or free() or when it references some
malloc()'ed memory, it looks like heap corruption. You can configure and