1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Fix releasing the lock in the parent atrun process after the queue

directory has been processed. Otherwise, a long-running child process
caused other atrun invocations to stall unnecessarily.
This commit is contained in:
Guy Helmer 2014-04-17 16:00:26 +00:00
parent 48ecfdc414
commit c759c06046
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=264617

View File

@ -567,6 +567,12 @@ main(int argc, char *argv[])
if (run_batch && (gloadavg() < load_avg))
run_file(batch_name, batch_uid, batch_gid);
if (flock(dirfd(spool), LOCK_UN) == -1)
perr("cannot unlock %s", ATJOB_DIR);
if (closedir(spool) == -1)
perr("cannot closedir %s", ATJOB_DIR);
closelog();
exit(EXIT_SUCCESS);
}