* io.c (rb_cloexec_open): use O_CLOEXEC if available.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2011-10-29 05:27:32 +00:00
Родитель da74bc7552
Коммит baa2d74dae
2 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat Oct 29 14:26:56 2011 Tanaka Akira <akr@fsij.org>
* io.c (rb_cloexec_open): use O_CLOEXEC if available.
Sat Oct 29 12:57:15 2011 Tanaka Akira <akr@fsij.org>
* process.c (ruby_setsid): use rb_cloexec_open.

3
io.c
Просмотреть файл

@ -191,6 +191,9 @@ int
rb_cloexec_open(const char *pathname, int flags, mode_t mode)
{
int ret;
#ifdef O_CLOEXEC
flags |= O_CLOEXEC;
#endif
ret = open(pathname, flags, mode);
if (ret == -1) return -1;
fd_set_cloexec(ret);