summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-03 08:27:43 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-03-03 08:27:43 +0000
commite83ad8cb51725e991a8398ed971f04ae53b8303f (patch)
treeeb1572f2a7cb2bc2f26ebdcea70bc260812bfcdb /ChangeLog
parent550b7d1fd29a86bea948e53210a28b1e5dce3d2c (diff)
downloadruby-e83ad8cb51725e991a8398ed971f04ae53b8303f.tar.gz
ruby-e83ad8cb51725e991a8398ed971f04ae53b8303f.tar.xz
ruby-e83ad8cb51725e991a8398ed971f04ae53b8303f.zip
* gc.c (add_heap): sort heaps array in ascending order to use
binary search. * gc.c (is_pointer_to_heap): use binary search to identify object in heaps. works better when number of heap segments grow big. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5c9218419..f92c516db 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Mon Mar 3 17:25:45 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * gc.c (add_heap): sort heaps array in ascending order to use
+ binary search.
+
+ * gc.c (is_pointer_to_heap): use binary search to identify object
+ in heaps. works better when number of heap segments grow big.
+
Mon Mar 3 17:15:09 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* re.c (rb_reg_regsub): remove too strict encoding check.