summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-10 03:40:32 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-04-10 03:40:32 +0000
commit04de1d7dfee3423d906b3fdd5429776d38d309c6 (patch)
tree588d5ff8225e72c97b969dd0ef429854824983d3 /gc.c
parent1a00d07619d999e5ed9396a2da527f4bcccbd9d4 (diff)
gc.c: do nothing unless USE_RGENGC
* gc.c (gc_verify_internal_consistency): always do nothing unless USE_RGENGC is set, no local variable needed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@45547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gc.c b/gc.c
index cf7c830f82..f2cd75f309 100644
--- a/gc.c
+++ b/gc.c
@@ -4252,21 +4252,21 @@ verify_internal_consistency_i(void *page_start, void *page_end, size_t stride, v
static VALUE
gc_verify_internal_consistency(VALUE self)
{
+#if USE_RGENGC
struct verify_internal_consistency_struct data;
data.objspace = &rb_objspace;
data.err_count = 0;
-#if USE_RGENGC
{
struct each_obj_args eo_args;
eo_args.callback = verify_internal_consistency_i;
eo_args.data = (void *)&data;
objspace_each_objects((VALUE)&eo_args);
}
-#endif
if (data.err_count != 0) {
rb_bug("gc_verify_internal_consistency: found internal consistency.\n");
}
+#endif
return Qnil;
}