The latest development release -- which is recommended for all users by the mono project. Major highlights include Nullable Types and Fixed Size Buffer features in the compiler; Much more improved Windows.Forms implementations; Increased performance, reduced memory usage. See the detailed release notes here: http://www.go-mono.com/archive/1.1.5/
20 lines
435 B
Text
20 lines
435 B
Text
$NetBSD: patch-ae,v 1.5 2005/03/27 10:25:51 recht Exp $
|
|
|
|
--- mono/metadata/boehm-gc.c.orig Sat Mar 5 10:29:43 2005
|
|
+++ mono/metadata/boehm-gc.c
|
|
@@ -59,10 +59,14 @@ mono_gc_enable (void)
|
|
gboolean
|
|
mono_gc_is_gc_thread (void)
|
|
{
|
|
-#ifdef USE_INCLUDED_LIBGC
|
|
+#if defined(USE_INCLUDED_LIBGC) && !defined(__NetBSD__)
|
|
return GC_thread_is_registered ();
|
|
#else
|
|
+#ifdef __NetBSD__
|
|
+ return FALSE;
|
|
+#else
|
|
return TRUE;
|
|
+#endif
|
|
#endif
|
|
}
|
|
|