summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-27 04:20:14 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-27 04:20:14 +0000
commit3a26241da3aec3d20dfc408a32de1c539455c89b (patch)
tree7bc3bf3cd94ce85d39bf928d1cae6e3231971cfc /NEWS
parent15bfc6ffbfe59ce71ad24d9327b34562b1470bd6 (diff)
* gc.c (objspace_malloc_increase): enable lazy sweep on GC by malloc()
(malloc_increase) to make GC incrementally. This change can increase memory consumption. Report us if you find any problem. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS1
1 files changed, 1 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 3ebec55e44..a32ea90425 100644
--- a/NEWS
+++ b/NEWS
@@ -334,6 +334,7 @@ with all sufficient information, see the ChangeLog file.
* Most symbols which are returned by String#to_sym and
String#intern are GC-able [Feature #9634]
* Introduce incremental marking for major GC. [Feature #10137]
+ * Enable lazy sweep on GC caused by malloc().
* VM
* Use frozen string literals for Hash#[] and Hash#[]=