ruby-changes:21505
From: akr <ko1@a...>
Date: Sat, 29 Oct 2011 20:58:40 +0900 (JST)
Subject: [ruby-changes:21505] akr:r33554 (trunk): add a comment.
akr 2011-10-29 20:58:30 +0900 (Sat, 29 Oct 2011) New Revision: 33554 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=33554 Log: add a comment. Modified files: trunk/io.c Index: io.c =================================================================== --- io.c (revision 33553) +++ io.c (revision 33554) @@ -192,6 +192,7 @@ { 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); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/