[前][次][番号順一覧][スレッド一覧]

ruby-changes:31315

From: ko1 <ko1@a...>
Date: Wed, 23 Oct 2013 14:22:18 +0900 (JST)
Subject: [ruby-changes:31315] ko1:r43394 (trunk): * gc.c (gc_prof_sweep_timer_stop): catch up recent changes

ko1	2013-10-23 14:22:10 +0900 (Wed, 23 Oct 2013)

  New Revision: 43394

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=43394

  Log:
    * gc.c (gc_prof_sweep_timer_stop): catch up recent changes
      to compile on GC_PROFILE_MORE_DETAIL=1.

  Modified files:
    trunk/ChangeLog
    trunk/gc.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 43393)
+++ ChangeLog	(revision 43394)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Oct 23 14:20:56 2013  Koichi Sasada  <ko1@a...>
+
+	* 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@z...>
 
 	* file.c: [DOC] fix rdoc format of File#expand_path from r43386
Index: gc.c
===================================================================
--- gc.c	(revision 43393)
+++ gc.c	(revision 43394)
@@ -5724,7 +5724,7 @@ gc_prof_sweep_timer_stop(rb_objspace_t * https://github.com/ruby/ruby/blob/trunk/gc.c#L5724
 
 #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
     }
 }

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]