diff options
Diffstat (limited to 'Src/jobs.c')
-rw-r--r-- | Src/jobs.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Src/jobs.c b/Src/jobs.c index 1b3d37c63..a8767ac39 100644 --- a/Src/jobs.c +++ b/Src/jobs.c @@ -153,6 +153,15 @@ findproc(pid_t pid, Job *jptr, Process *pptr, int aux) for (i = 1; i <= maxjob; i++) { + /* + * We are only interested in jobs with processes still + * marked as live. Careful in case there's an identical + * process number in a job we haven't quite got around + * to deleting. + */ + if (jobtab[i].stat & STAT_DONE) + continue; + for (pn = aux ? jobtab[i].auxprocs : jobtab[i].procs; pn; pn = pn->next) if (pn->pid == pid) { |