2003-01-20 Miguel de Icaza <miguel@ximian.com>
authorMiguel de Icaza <miguel@gnome.org>
Mon, 20 Jan 2003 22:33:55 +0000 (22:33 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Mon, 20 Jan 2003 22:33:55 +0000 (22:33 -0000)
* debug.c (initialize_debugger_support): ifdef out the call to
mono_debugger_init_thread_debug for the release.

Someone should look into why its not defined.  I think the problem
is what Dick pointed out somewhere: code in io-layer is not
supposed to ever be used in Windows, so code for the debugger that
lives there must be moved elsewhere.

svn path=/trunk/mono/; revision=10746

mono/jit/ChangeLog
mono/jit/debug.c

index 6665ad862a29950cee56caee0e098c57d2ccc067..cf9c38effc2c3ef1ee4cbbed1792988fd131f1ff 100644 (file)
@@ -1,3 +1,13 @@
+2003-01-20  Miguel de Icaza  <miguel@ximian.com>
+
+       * debug.c (initialize_debugger_support): ifdef out the call to
+       mono_debugger_init_thread_debug for the release. 
+
+       Someone should look into why its not defined.  I think the problem
+       is what Dick pointed out somewhere: code in io-layer is not
+       supposed to ever be used in Windows, so code for the debugger that
+       lives there must be moved elsewhere.
+
 2003-01-19  Martin Baulig  <martin@ximian.com>
 
        * debug.c: Ok, this should now finally be working this time ....
index 64924631f14470b2f5fe2e5007c43f2a1dc32843..06642e1e21812d4665c29125eb6ceb10e82d6462 100644 (file)
@@ -1461,7 +1461,9 @@ initialize_debugger_support ()
         * Wait until the debugger thread has actually been started and we
         * have its pid, then actually start the background thread.
         */
+#ifndef PLATFORM_WIN32
        mono_debugger_init_thread_debug (debugger_background_thread);
+#endif
 }
 
 static GPtrArray *breakpoints = NULL;