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

ruby-changes:25261

From: nari <ko1@a...>
Date: Wed, 24 Oct 2012 13:30:03 +0900 (JST)
Subject: [ruby-changes:25261] nari:r37313 (trunk): rename it to a more fitting name

nari	2012-10-24 13:29:53 +0900 (Wed, 24 Oct 2012)

  New Revision: 37313

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

  Log:
    rename it to a more fitting name

  Modified files:
    trunk/ChangeLog
    trunk/gc.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 37312)
+++ ChangeLog	(revision 37313)
@@ -1,6 +1,6 @@
 Wed Oct 24 11:57:24 2012  Narihiro Nakamura  <authornari@g...>
 
-	* gc.c (gc_aquire_free_object): rename to match the behavior of
+	* gc.c (gc_prepare_free_objects): rename to match the behavior of
 	  this function.
 
 Wed Oct 24 11:55:19 2012  Koichi Sasada  <ko1@a...>
Index: gc.c
===================================================================
--- gc.c	(revision 37312)
+++ gc.c	(revision 37313)
@@ -360,7 +360,7 @@
 
 static VALUE lazy_sweep_enable(void);
 static int garbage_collect(rb_objspace_t *);
-static int gc_aquire_free_object(rb_objspace_t *);
+static int gc_prepare_free_objects(rb_objspace_t *);
 static void mark_tbl(rb_objspace_t *, st_table *);
 static void rest_sweep(rb_objspace_t *);
 static void gc_mark_stacked_objects(rb_objspace_t *);
@@ -666,7 +666,7 @@
     }
 
     if (UNLIKELY(!has_free_object)) {
-	if (!gc_aquire_free_object(objspace)) {
+	if (!gc_prepare_free_objects(objspace)) {
 	    during_gc = 0;
 	    rb_memerror();
 	}
@@ -2044,7 +2044,7 @@
 static void gc_marks(rb_objspace_t *objspace);
 
 static int
-gc_aquire_free_object(rb_objspace_t *objspace)
+gc_prepare_free_objects(rb_objspace_t *objspace)
 {
     int res;
 

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

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