X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmetadata%2Fnull-gc.c;h=597224a7672a44a2674fab5369b412e75b5e8759;hb=3e6c4f526499a339783cbe427e9916bbd99d7a0e;hp=4ee7dd7c9c4f9ea7f327c0ffe7d81a5dcb3e1107;hpb=d899b02874a476290f6e8cd54d40e0eaba2ecf04;p=mono.git diff --git a/mono/metadata/null-gc.c b/mono/metadata/null-gc.c index 4ee7dd7c9c4..597224a7672 100644 --- a/mono/metadata/null-gc.c +++ b/mono/metadata/null-gc.c @@ -1,5 +1,6 @@ -/* - * null-gc.c: GC implementation using malloc: will leak everything, just for testing. +/** + * \file + * GC implementation using malloc: will leak everything, just for testing. * * Copyright 2001-2003 Ximian, Inc (http://www.ximian.com) * Copyright 2004-2011 Novell, Inc (http://www.novell.com) @@ -425,11 +426,17 @@ mono_gc_is_disabled (void) } void -mono_gc_wbarrier_value_copy_bitmap (gpointer _dest, gpointer _src, int size, unsigned bitmap) +mono_gc_wbarrier_range_copy (gpointer _dest, gpointer _src, int size) { g_assert_not_reached (); } +void* +mono_gc_get_range_copy_func (void) +{ + return &mono_gc_wbarrier_range_copy; +} + guint8* mono_gc_get_card_table (int *shift_bits, gpointer *card_mask) {