summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authornari <nari@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-27 05:00:57 +0000
committernari <nari@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-27 05:00:57 +0000
commit1d8d7a3eec54a5440a1942c0b589c228138834ae (patch)
tree4b44eef8beca1a3ad280a5ea70d5a5789facfa19 /NEWS
parent1c279a7d2753949c725754e1302f791b76358114 (diff)
* NEWS: add improvements of the garbage collector.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 267c52db19..987f45017f 100644
--- a/NEWS
+++ b/NEWS
@@ -50,6 +50,12 @@ with all sufficient information, see the ChangeLog file.
* File.fnmatch? now expands braces in the pattern if
File::FNM_EXTGLOB option is given.
+ * GC
+ * improvements:
+ * introduced the bitmap marking which suppresses to copy a memory page
+ with Copy-on-Write.
+ * introduced the non-recurcive marking which avoids unexpected stack overflow.
+
* GC::Profiler
* added method:
* added GC::Profiler.raw_data which returns raw profile data for GC.