aboutsummaryrefslogtreecommitdiffstats
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
parent2bd5ab359d89722eab61584770784cd34ec52b5c (diff)
downloadruby-29ffa2c2733cbeaf0c018579b65d9719ed6c7902.tar.gz
* 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
-rw-r--r--ChangeLog5
-rw-r--r--gc.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ac8db77b9..edb7f5e677 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Oct 23 14:20:56 2013 Koichi Sasada <ko1@atdot.net>
+
+ * gc.c (gc_prof_sweep_timer_stop): catch up recent changes
+ to compile on GC_PROFILE_MORE_DETAIL=1.
+
Wed Oct 23 11:43:27 2013 Zachary Scott <e@zzak.io>
* file.c: [DOC] fix rdoc format of File#expand_path from r43386
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
}
}