Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / null-gc.c
index d13ecc9f43a74b69d15d7ea4f4d40921434d7603..2f7cd30e038ad5a9e0e90b5d29a11a08ecd1640c 100644 (file)
@@ -21,6 +21,23 @@ mono_gc_max_generation (void)
        return 0;
 }
 
+int
+mono_gc_get_generation  (MonoObject *object)
+{
+       return 0;
+}
+
+int
+mono_gc_collection_count (int generation)
+{
+       return 0;
+}
+
+void
+mono_gc_add_memory_pressure (gint64 value)
+{
+}
+
 /* maybe track the size, not important, though */
 gint64
 mono_gc_get_used_size (void)
@@ -132,5 +149,16 @@ mono_gc_wbarrier_value_copy (gpointer dest, gpointer src, int count, MonoClass *
 {
 }
 
+void
+mono_gc_wbarrier_object (MonoObject* obj)
+{
+}
+
+MonoMethod*
+mono_gc_get_managed_allocator (MonoVTable *vtable, gboolean for_box)
+{
+       return NULL;
+}
+
 #endif