bug-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] Use spawn() in GNU Make on Cygwin, updated


From: Paul Smith
Subject: Re: [PATCH] Use spawn() in GNU Make on Cygwin, updated
Date: Fri, 16 Aug 2013 13:12:28 -0400

On Fri, 2013-08-16 at 20:59 +0400, Pavel Fedin wrote:
> Friday, August 16, 2013, 19:19:58 you wrote:
> 
> > Also, when I'm making changes to the exec() code I don't spend a lot of
> > time worrying about spawn() so it is possible that it will be broken
> > from time to time and, in fact, I think you actually noticed some
> > breakage in the cygwin list.
> 
>  Which one ?

It seems that the discussion is not directly addressing the issue here.
Personally I don't worry that spawn() will break, and I wouldn't mind a
more performant version of make for windows/cygwin, either optionally or
by default.


However, if you look at the code in job.c that make uses to actually
fork/exec a process you will see that there are a number of operations
we perform in the child process between the fork and the exec.  In fact
I recently had to abandon using vfork() and use fork(), because some of
the operations performed in the child before the exec() are not valid in
a vfork() implementation.

So, the question is very simple: is it technically possible to ensure
that the operations make takes today in the child between fork and exec
can be handled properly in a spawn-based implementation?  I know some
operations can be handled, such as close-on-exec.  Others I'm not sure
about.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]