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

ruby-changes:29471

From: ko1 <ko1@a...>
Date: Fri, 21 Jun 2013 15:08:22 +0900 (JST)
Subject: [ruby-changes:29471] ko1:r41523 (trunk): * gc.c: enable lazy sweep (commit miss).

ko1	2013-06-21 15:08:07 +0900 (Fri, 21 Jun 2013)

  New Revision: 41523

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

  Log:
    * gc.c: enable lazy sweep (commit miss).

  Modified files:
    trunk/ChangeLog
    trunk/gc.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 41522)
+++ ChangeLog	(revision 41523)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Jun 21 15:07:42 2013  Koichi Sasada  <ko1@a...>
+
+	* gc.c: enable lazy sweep (commit miss).
+
 Fri Jun 21 14:31:29 2013  Nobuyoshi Nakada  <nobu@r...>
 
 	* hash.c (ruby_setenv): refine error message so include the variable
Index: gc.c
===================================================================
--- gc.c	(revision 41522)
+++ gc.c	(revision 41523)
@@ -148,7 +148,7 @@ void rb_gcdebug_print_obj_condition(VALU https://github.com/ruby/ruby/blob/trunk/gc.c#L148
 #define GC_PROFILE_MORE_DETAIL 0
 #endif
 #ifndef GC_ENABLE_LAZY_SWEEP
-#define GC_ENABLE_LAZY_SWEEP 0
+#define GC_ENABLE_LAZY_SWEEP   1
 #endif
 #ifndef CALC_EXACT_MALLOC_SIZE
 #define CALC_EXACT_MALLOC_SIZE 0

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

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