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

process.c: missing parenthesis

* process.c (proc_detach): [DOC] fix missing closing parenthesis.
  [Fix GH-799]  [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49053 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-12-29 01:37:07 +00:00
parent 6a488fdeda
commit 76ec09062a
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Dec 29 10:37:06 2014 Thiago Lewin <thiago_lewin@yahoo.com.br>
* process.c (proc_detach): [DOC] fix missing closing parenthesis.
[Fix GH-799]
Mon Dec 29 07:27:23 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* ext/json, test/json: merge JSON HEAD(17fe8e7)

View file

@ -978,7 +978,7 @@ rb_detach_process(rb_pid_t pid)
*
* Some operating systems retain the status of terminated child
* processes until the parent collects that status (normally using
* some variant of <code>wait()</code>. If the parent never collects
* some variant of <code>wait()</code>). If the parent never collects
* this status, the child stays around as a <em>zombie</em> process.
* <code>Process::detach</code> prevents this by setting up a
* separate Ruby thread whose sole job is to reap the status of the