summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-25 13:39:19 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-25 13:39:19 +0000
commitafe02a2f1970202c1b7bf7ea7f4a09e8e05134f4 (patch)
treedc6c7c3df6b4c9af0e791fee33f90e40f085c378
parentd95aae32ce582b2116169836c8ac6fac7f9abe02 (diff)
Move the description about vfork.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--NEWS6
1 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 94e8abc2a6..b06039bf9e 100644
--- a/NEWS
+++ b/NEWS
@@ -75,8 +75,6 @@ with all sufficient information, see the ChangeLog file.
* Extended method:
* Process execution methods such as Process.spawn opens the file in write
mode for redirect from [:out, :err].
- * Process creation methods, such as spawn(), uses vfork() system call.
- vfork() is faster than fork() when the parent process uses huge memory.
* String
* New methods:
@@ -334,3 +332,7 @@ with all sufficient information, see the ChangeLog file.
* Fast keyword arguments passing [Feature #10440]
* Allow to receive huge splatted array by a rest argument
[Feature #10440]
+
+* Process
+ * Process creation methods, such as spawn(), uses vfork() system call.
+ vfork() is faster than fork() when the parent process uses huge memory.