Add mono_debugger_get_thread_abort_signal() helper function.
authorMartin Baulig <martin@novell.com>
Mon, 5 Jul 2010 14:35:02 +0000 (14:35 -0000)
committerMartin Baulig <martin@novell.com>
Mon, 5 Jul 2010 14:35:02 +0000 (14:35 -0000)
2010-06-07  Martin Baulig  <martin@ximian.com>

* mono-debug-debugger.c (mono_debugger_get_thread_abort_signal):
New helper function since mono_thread_get_abort_signal() is now
internal.

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

mono/metadata/ChangeLog
mono/metadata/mono-debug-debugger.c
mono/metadata/mono-debug-debugger.h

index 68611b4030cd2a3b4d2b98c53c66024e49b72ff3..08ffcae3c56b5bc6e58ff2cdff9372aa98f18b51 100644 (file)
@@ -1,3 +1,9 @@
+2010-06-07  Martin Baulig  <martin@ximian.com>
+
+       * mono-debug-debugger.c (mono_debugger_get_thread_abort_signal):
+       New helper function since mono_thread_get_abort_signal() is now
+       internal.
+
 2010-06-07  Martin Baulig  <martin@ximian.com>
 
        * mono-debug.h, debug-mono-symfile.h: Kill glib dependencies.
index 6755f63630980bd65f60e80a3cea1df44182be44..1fab688742d83f7dfd92479900519030a5c1253c 100644 (file)
@@ -323,3 +323,10 @@ mono_debugger_class_initialized (MonoClass *klass)
                goto again;
        }
 }
+
+int
+mono_debugger_get_thread_abort_signal (void)
+{
+       return mono_thread_get_abort_signal ();
+}
+
index ed6efa072945478e099bcf7ad2a70db1f80a9f8d..30a50a55138fc24fd3c1a8dbfa462aac18d2ba82 100644 (file)
@@ -91,4 +91,7 @@ mono_debugger_register_class_init_callback (MonoImage *image, const gchar *full_
 void
 mono_debugger_remove_class_init_callback (int index);
 
+int
+mono_debugger_get_thread_abort_signal (void);
+
 #endif /* __MONO_DEBUG_DEBUGGER_H__ */