Re: [Patch, libgfortran] Set close-on-exec flag when opening files

2013-11-10 Thread Janne Blomqvist
On Sun, Nov 10, 2013 at 7:16 PM, Tobias Burnus wrote: > Janne Blomqvist wrote: >> >> the attached patch sets the close-on-exec flag when opening files, as >> is usually considered good practice these days. See e.g. >> http://www.python.org/dev/peps/pep-0446/ and links therein for more >> informat

Re: [Patch, libgfortran] Set close-on-exec flag when opening files

2013-11-10 Thread Tobias Burnus
Janne Blomqvist wrote: the attached patch sets the close-on-exec flag when opening files, as is usually considered good practice these days. See e.g. http://www.python.org/dev/peps/pep-0446/ and links therein for more information. + int flags = O_RDWR|O_CREAT|O_EXCL; I'd add spaces around "

Re: [Patch, libgfortran] Set close-on-exec flag when opening files

2013-11-05 Thread Janne Blomqvist
PING On Wed, Oct 30, 2013 at 1:39 AM, Janne Blomqvist wrote: > Hello, > > the attached patch sets the close-on-exec flag when opening files, as > is usually considered good practice these days. See e.g. > http://www.python.org/dev/peps/pep-0446/ and links therein for more > information. > > The p