Merge in 2.0.2.

This commit is contained in:
Geoffrey Challen
2017-01-09 22:58:21 -05:00
parent cafa9f5690
commit 08a300d1a6
12 changed files with 2010 additions and 688 deletions

View File

@@ -174,8 +174,11 @@ spawn(int njobs)
for (i=0; i<njobs; i++) {
pids[i] = fork();
if (pids[i] == -1) {
/* abandon the other procs; no way to kill them */
err(1, "fork");
/* continue with the procs we have; cannot kill them */
warn("fork");
warnx("*** Only started %u processes ***", i);
njobs = i;
break;
}
if (pids[i] == 0) {
/* child */