From 3685aa630731f70b245cdf0eb8a759d0e7a35a12 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 26 Sep 2006 22:46:16 +0000 Subject: * array.c (rb_ary_shift): shift/unshift performance boost patch, based on the patch from Eric Mahurin . [ruby-core:05861] * array.c (rb_ary_unshift_m): ditto. * array.c (ary_make_shared): ditto. * array.c (RESIZE_CAPA): ditto. * array.c (rb_ary_free): new function to free memory. code moved from gc.c. * string.c (rb_str_free): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 8331f8c7a..2b8dcb767 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,23 @@ Wed Sep 27 01:04:49 2006 Nobuyoshi Nakada * lib/mkmf.rb (have_type): simplified with typedef and sizeof. +Wed Sep 27 00:08:12 2006 Yukihiro Matsumoto + + * array.c (rb_ary_shift): shift/unshift performance boost patch, + based on the patch from Eric Mahurin . + [ruby-core:05861] + + * array.c (rb_ary_unshift_m): ditto. + + * array.c (ary_make_shared): ditto. + + * array.c (RESIZE_CAPA): ditto. + + * array.c (rb_ary_free): new function to free memory. code moved + from gc.c. + + * string.c (rb_str_free): ditto. + Tue Sep 26 23:57:03 2006 Nobuyoshi Nakada * lib/optparse.rb (OptionParser#getopts): use strings as key. -- cgit