new tests
[mono.git] / web / jit-debug
index e33deb65579a69f1eac3e895c47b472b6d0b34a1..57ec906526332eef0ea3db60f86dfe4f3390e055 100644 (file)
@@ -41,6 +41,14 @@ IP 0x817f42a at offset 0x52 of method System.Collections.Hashtable:GetHash (obje
 $2 = void
 </pre>
 
+       Mono support libraries use a couple of signals internally that
+       confuse gdb, you might want to add this to your .gdbinit file:
+
+<pre>
+       handle SIGPWR nostop noprint 
+       handle SIGXCPU nostop noprint 
+</pre>
+
 * Mono Debugger 
 
        The Mono debugger is written in C# and can debug both managed
@@ -52,13 +60,14 @@ $2 = void
        href="http://lists.ximian.com/archives/public/mono-list/2003-January/011415.html">post</a>. 
        
        The debugger contains both Gtk# and command line interfaces.
-       The debugging file format used in Dwarf (its already supported
+       The debugging file format used in Dwarf (it's already supported
        by our class libraries and the Mono C# compiler; To debug C
        applications, you need a recent GCC, or to pass the -gdwarf-2
        flag to gcc).
 
-       The debugger is available now, you can get it from <a
-       href="http://primates.ximian.com/~martin/debugger/mono-debugger-0.2.0.tar.gz">here</a>
+       You can download the releases from <a
+       href="http://primates.ximian.com/~martin/debugger/">Martin Baulig's
+       home page.</a>