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

rdoc update.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24499 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-08-11 13:27:46 +00:00
parent 8dfd78fc1c
commit 3aabcaa3da

View file

@ -2977,7 +2977,14 @@ rb_f_system(int argc, VALUE *argv)
* Process.spawn([env,] command... [,options]) => pid
*
* spawn executes specified command and return its pid.
* It doesn't wait for end of the command.
*
* This method doesn't wait for end of the command.
* The parent process should
* use <code>Process.wait</code> to collect
* the termination status of its child or
* use <code>Process.detach</code> to register
* disinterest in their status;
* otherwise, the operating system may accumulate zombie processes.
*
* spawn has bunch of options to specify process attributes:
*