diff options
author | Paul Smith <psmith@gnu.org> | 1999-08-13 07:36:26 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-08-13 07:36:26 +0000 |
commit | cbb9e38d10b35a469d0880542b12530817b11003 (patch) | |
tree | 47814942687f380da81eaaaadaff436eef4e591c /main.c | |
parent | 9e79637ec3fcd24394b2d705ff7c64bd91da9b24 (diff) | |
download | gunmake-cbb9e38d10b35a469d0880542b12530817b11003.tar.gz |
* Rework jobserver yet one more time.
* Install the $(if ...) function and document it. Still need some examples.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 24 |
1 files changed, 10 insertions, 14 deletions
@@ -205,6 +205,7 @@ static unsigned int inf_jobs = 0; /* File descriptors for the jobs pipe. */ int job_fds[2] = { -1, -1 }; +int job_rfd = -1; /* Maximum load average at which multiple jobs will be run. Negative values mean unlimited, while zero means limit to @@ -1305,12 +1306,15 @@ int main (int argc, char ** argv) job_fds[0] = job_slots; job_slots = 0; - /* Make sure the pipe is open! The parent might have closed it - because it didn't think we were a submake. If so, print a warning - then default to -j1. */ - if (fcntl (job_fds[0], F_GETFL, 0) < 0 - || fcntl (job_fds[1], F_GETFL, 0) < 0) + /* Create a duplicate pipe, that will be closed in the SIGCHLD + handler. If this fails with EBADF, the parent has closed the pipe + on us because it didn't think we were a submake. If so, print a + warning then default to -j1. */ + if ((job_rfd = dup (job_fds[0])) < 0) { + if (errno != EBADF) + pfatal_with_name (_("dup jobserver")); + error (NILF, _("warning: jobserver unavailable (using -j1). Add `+' to parent make rule.")); job_slots = 1; @@ -1328,7 +1332,7 @@ int main (int argc, char ** argv) char buf[(sizeof("1024")*2)+1]; char c = '0'; - if (pipe (job_fds) < 0) + if (pipe (job_fds) < 0 || (job_rfd = dup (job_fds[0])) < 0) pfatal_with_name (_("creating jobs pipe")); /* Every make assumes that it always has one job it can run. For the @@ -1351,14 +1355,6 @@ int main (int argc, char ** argv) sprintf(buf, "%d,%d", job_fds[0], job_fds[1]); job_slots_str = xstrdup(buf); } - - /* Be sure the blocking bit on the read FD is set to start with. */ - if (job_fds[0] >= 0) - { - int fl = fcntl(job_fds[0], F_GETFL, 0); - if (fl >= 0) - fcntl(job_fds[0], F_SETFL, fl & ~O_NONBLOCK); - } #endif /* Set up MAKEFLAGS and MFLAGS again, so they will be right. */ |