Author: lupus
Date: 2007-09-13 05:27:59 -0400 (Thu, 13 Sep 2007)
New Revision: 85730

Modified:
   trunk/mono/mono/metadata/ChangeLog
   trunk/mono/mono/metadata/boehm-gc.c
Log:


Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <[EMAIL PROTECTED]>

        * boehm-gc.c: fixed the build after the AOT changes.



Modified: trunk/mono/mono/metadata/ChangeLog
===================================================================
--- trunk/mono/mono/metadata/ChangeLog  2007-09-13 09:22:31 UTC (rev 85729)
+++ trunk/mono/mono/metadata/ChangeLog  2007-09-13 09:27:59 UTC (rev 85730)
@@ -1,3 +1,8 @@
+
+Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <[EMAIL PROTECTED]>
+
+       * boehm-gc.c: fixed the build after the AOT changes.
+
 2007-09-13  Zoltan Varga  <[EMAIL PROTECTED]>
 
        * wrapper-types.h: Add an ALLOC wrapper type.

Modified: trunk/mono/mono/metadata/boehm-gc.c
===================================================================
--- trunk/mono/mono/metadata/boehm-gc.c 2007-09-13 09:22:31 UTC (rev 85729)
+++ trunk/mono/mono/metadata/boehm-gc.c 2007-09-13 09:27:59 UTC (rev 85730)
@@ -480,16 +480,6 @@
        return mono_gc_get_managed_allocator_by_type (atype);
 }
 
-#else
-
-MonoMethod*
-mono_gc_get_managed_allocator (MonoVTable *vtable, gboolean for_box)
-{
-       return NULL;
-}
-
-#endif
-
 /**
  * mono_gc_get_managed_allocator_id:
  *
@@ -534,5 +524,27 @@
        return res;
 }
 
+#else
+
+MonoMethod*
+mono_gc_get_managed_allocator (MonoVTable *vtable, gboolean for_box)
+{
+       return NULL;
+}
+
+int
+mono_gc_get_managed_allocator_type (MonoMethod *managed_alloc)
+{
+       return -1;
+}
+
+MonoMethod*
+mono_gc_get_managed_allocator_by_type (int atype)
+{
+       return NULL;
+}
+
+#endif
+
 #endif /* no Boehm GC */
 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to