if (pid == e->e_ctrl_pid) {
if (e->e_line == NULL) {
/* the corresponding file has been removed from memory */
- debug("job finished: pid %d", pid);
+ debug("Job finished: pid %d", pid);
}
else {
line = e->e_line;
-/* debug("job finished: %s", line->cl_shell); */
+/* debug("Job finished: %s", line->cl_shell); */
line->cl_numexe -= 1;
line->cl_file->cf_running -= 1;
if (pid == e->e_ctrl_pid) {
if (e->e_line == NULL) {
/* the corresponding file has been removed from memory */
- debug("job finished: pid %d", pid);
+ debug("Job finished: pid %d", pid);
}
else {
- debug("job finished: '%s'", e->e_line->cl_shell);
+ debug("Job finished: '%s'", e->e_line->cl_shell);
e->e_line->cl_numexe -= 1;
e->e_line->cl_file->cf_running -= 1;
else {
/* job has been stopped during execution :
* launch it again */
- warn("job '%s' did not finish : running it again.", cl->cl_shell);
+ warn("Job '%s' did not finish : running it again.", cl->cl_shell);
set_serial_once(cl->cl_option);
add_serial_job(cl, -1);
}
if (is_runonce(cl->cl_option) && is_hasrun(cl->cl_option)) {
/* if we get here, then context != CONTEXT_BOOT and_volatile is false */
/* do nothing: don't re-schedule or add to the job queue */
- explain("job '%s' with runonce set has already run since last "
+ explain("Job '%s' with runonce set has already run since last "
"system startup: not re-scheduling.", cl->cl_shell);
}
else if (is_td(cl->cl_option)) {