summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-23 05:22:10 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-23 05:22:10 +0000
commit29ffa2c2733cbeaf0c018579b65d9719ed6c7902 (patch)
treeaf3841995b93c336dc7a1092b3ac63e498591e3e /gc.c
parent2bd5ab359d89722eab61584770784cd34ec52b5c (diff)
* gc.c (gc_prof_sweep_timer_stop): catch up recent changes
to compile on GC_PROFILE_MORE_DETAIL=1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index 30e5be0a5e..47449883f7 100644
--- a/gc.c
+++ b/gc.c
@@ -5724,7 +5724,7 @@ gc_prof_sweep_timer_stop(rb_objspace_t *objspace)
#if GC_PROFILE_MORE_DETAIL
record->gc_sweep_time += sweep_time;
- if (deferred_final_list) record->flags |= GPR_FLAG_HAVE_FINALIZE;
+ if (heap_pages_deferred_final) record->flags |= GPR_FLAG_HAVE_FINALIZE;
#endif
}
}