1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Move the description about vfork.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2014-11-25 13:39:19 +00:00
parent d95aae32ce
commit afe02a2f19

6
NEWS
View file

@ -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.