summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-27 03:20:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-27 03:20:35 +0000
commitbd1e7e65ef07ca9fe24fdf8b81d899ad82e9e3b1 (patch)
treef2453edb619097b017cb6563c23e145783c8b402 /ChangeLog
parent26a884d95fe90f47ed79ab2a0babfb34154c899f (diff)
downloadruby-bd1e7e65ef07ca9fe24fdf8b81d899ad82e9e3b1.tar.gz
ruby-bd1e7e65ef07ca9fe24fdf8b81d899ad82e9e3b1.tar.xz
ruby-bd1e7e65ef07ca9fe24fdf8b81d899ad82e9e3b1.zip
* vm_core.h (rb_vm_t), gc.c (rb_objspace, rb_newobj), vm.c
(Init_BareVM): per-VM object space support, which is disabled now. * gc.c (rb_objspace_alloc), vm.c (Init_BareVM): should not use ruby malloc here. * gc.c (garbage_collect, etc): performance improvement by passing the reference instead of refering the global variable in each functions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16218 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c3d5dd922..9a0b1a3ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+Sun Apr 27 12:20:33 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * vm_core.h (rb_vm_t), gc.c (rb_objspace, rb_newobj), vm.c
+ (Init_BareVM): per-VM object space support, which is disabled now.
+
+ * gc.c (rb_objspace_alloc), vm.c (Init_BareVM): should not use ruby
+ malloc here.
+
+ * gc.c (garbage_collect, etc): performance improvement by passing the
+ reference instead of refering the global variable in each functions.
+
Sun Apr 27 08:06:15 2008 NARUSE, Yui <naruse@ruby-lang.org>
* ruby.c (ruby_set_argv): ARGV should be locale encoding.