* gc.c (gc_clear_slot_bits): used only if no RGenGC.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-06-07 02:49:53 +00:00
parent 147775ac2b
commit 0b87f8d4cf

4
gc.c
View File

@ -2116,13 +2116,13 @@ lazy_sweep_enable(void)
return Qnil;
}
#if !USE_RGENGC
static void
gc_clear_slot_bits(struct heaps_slot *slot)
{
memset(slot->header->mark_bits, 0, HEAP_BITMAP_LIMIT * sizeof(uintptr_t));
}
#if USE_RGENGC
#else
static void
gc_setup_mark_bits(struct heaps_slot *slot)
{