Follow-up Comment #2, bug #18617 (project make):
You may try looking at
http://lists.gnu.org/archive/html/help-make/2006-10/msg00033.html.
Using the -P (preprocessing) feature shows partial expansions of $(eval)
invocations.
___
Reply to t
In main.c we have
jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
Shouldn't xmalloc get a "+2" instead of "+1"? 1 for the comma, and
one for the null terminator?
--ken
On Mon, 2007-01-08 at 22:26 -0500, Ken Takusagawa wrote:
> In main.c we have
>
> jobserver_fds->list[0] = xmalloc ((sizeof ("1024")*2)+1);
>
> sprintf (jobserver_fds->list[0], "%d,%d", job_fds[0], job_fds[1]);
>
> Shouldn't xmalloc get a "+2" instead of "+1"? 1 for the comma, and
>
For reasons I haven't completely triaged yet, I've been having my
parallel makes die with
"read jobs pipe: Resource temporarily unavailable. Stop."
I hacked the function new_job in job.c such that if errno==EAGAIN,
then we sleep(1) and loop again, and my problem went away.
(Essentially adding EA