diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-11-14 07:29:33 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-11-14 07:29:33 +0000 |
commit | 5d5c95f28e9f40bbe867ce05feaa351d76fd53dd (patch) | |
tree | f4d393cbca0fa7eef1e36e0227efb66fb655a7b9 /ChangeLog | |
parent | ab1576704f0ee380c0d1e1476f089ada0fb65ddc (diff) |
* gc.c (gc_stat_internal): add compatible layer.
From Ruby 2.2, keys of GC.stat are changed [Feature #9924].
To provide compatible layer, GC.stat add a default_proc
(if default_proc of given Hash object is not set).
At first use of this compatible layer of interpreter process,
show a warning message like that:
program: GC.stat[:total_allocated_object]
warning message: "warning: GC.stat keys were changed from Ruby
2.1. In this case, you refer to obsolete `total_allocated_object'
(new key is `total_allocated_objects').
Please check <https://bugs.ruby-lang.org/issues/9924>
for more information."
Pleaes correct my English message :)
* hash.c (rb_hash_set_default_proc): export (in internal).
* internal.h: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -1,3 +1,25 @@ +Fri Nov 14 16:19:08 2014 Koichi Sasada <ko1@atdot.net> + + * gc.c (gc_stat_internal): add compatible layer. + From Ruby 2.2, keys of GC.stat are changed [Feature #9924]. + To provide compatible layer, GC.stat add a default_proc + (if default_proc of given Hash object is not set). + + At first use of this compatible layer of interpreter process, + show a warning message like that: + program: GC.stat[:total_allocated_object] + warning message: "warning: GC.stat keys were changed from Ruby + 2.1. In this case, you refer to obsolete `total_allocated_object' + (new key is `total_allocated_objects'). + Please check <https://bugs.ruby-lang.org/issues/9924> + for more information." + + Pleaes correct my English message :) + + * hash.c (rb_hash_set_default_proc): export (in internal). + + * internal.h: ditto. + Fri Nov 14 10:41:25 2014 Koichi Sasada <ko1@atdot.net> * gc.c: guard by #if/#endif with GC_ENABLE_INCREMENTAL_MARK |