mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
add doc. for IO#close_on_exec=.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
474e3cd2a7
commit
a00c92f7fc
1 changed files with 8 additions and 0 deletions
8
io.c
8
io.c
|
@ -3865,6 +3865,14 @@ rb_io_close_on_exec_p(VALUE io)
|
|||
* f.close_on_exec = true
|
||||
* system("cat", "/proc/self/fd/#{f.fileno}") # cat: /proc/self/fd/3: No such file or directory
|
||||
* f.closed? #=> false
|
||||
*
|
||||
* Ruby sets close-on-exec flags of all file descriptors by default
|
||||
* since Ruby 2.0.0.
|
||||
* So you don't need to set by yourself.
|
||||
* Also, unsetting a close-on-exec flag can cause file descriptor leak
|
||||
* if another thread use fork() and exec() (via system() method for example).
|
||||
* If you really needs file descriptor inheritance to child process,
|
||||
* use spawn()'s argument such as fd=>fd.
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
|
|
Loading…
Add table
Reference in a new issue