Eliminate the global jobs() function

All job lists are attached to a parser now.
This commit is contained in:
ridiculousfish
2019-05-04 22:12:31 -07:00
parent afff93bdb2
commit 8a8b2513b5
17 changed files with 79 additions and 117 deletions

View File

@@ -1120,7 +1120,7 @@ bool exec_job(parser_t &parser, shared_ptr<job_t> j) {
return false;
}
j->continue_job(reclaim_foreground_pgrp, false);
j->continue_job(parser, reclaim_foreground_pgrp, false);
return true;
}