git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33554 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2011-10-29 11:58:30 +00:00
Родитель 4ae2b92576
Коммит a9648d1e58
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -192,6 +192,7 @@ rb_cloexec_open(const char *pathname, int flags, mode_t mode)
{
int ret;
#ifdef O_CLOEXEC
/* O_CLOEXEC is available since Linux 2.6.23. Linux 2.6.18 silently ignore it. */
flags |= O_CLOEXEC;
#endif
ret = open(pathname, flags, mode);