Lines Matching refs:start

109 	unsigned long	start;
143 Table_t job; /* job by <start,name> */
503 error(0, "%s %s que %s at %s \"%s\"", job->name, fmtuid(job->owner->user->uid), job->queue->name, fmttime(AT_TIME_FORMAT, job->start), job->label);
592 if (job->repeat && (t = job->start) && (t = tmdate(job->repeat, &e, &t)) && !*e)
595 job->start = t;
619 message((-2, "schedule job=%s start=%lu time=%lu queue=%s load=%d.%02d/%d.%02d%s", job->name, job->start, cs.time, job->queue->name, job->queue->load / 100, job->queue->load % 100, st.load / 100, st.load % 100, job->run ? " RUNNING" : job->start <= cs.time ? " READY" : ""));
622 if (job->start <= cs.time)
646 else if (x > (job->start + que->wait))
647 x = job->start + que->wait;
649 else if (x > (job->start + que->wait))
650 x = job->start + que->wait;
654 if (x > job->start)
655 x = job->start;
890 job->start = cs.time;
915 job->start = strtol(s, &t, 0);
937 job->start = tmdate(job->repeat, NiL, NiL);
1008 sfprintf(sp, "#%c%s %c0 %s %c%s %c%lu", AT_QUEUE, job->queue->name, AT_JOB, job->shell, AT_LABEL, t, AT_TIME, job->start);
1051 error(ERROR_OUTPUT|0, con->fd, "job %s at %s%s%s", job->name, fmttime("%a %b %e %T %Y", job->start), job->repeat ? " repeat " : "", job->period);
1068 error(ERROR_OUTPUT|0, con->fd, "%s\t%s", job->name, fmttime("%a %b %e %T %Y", job->start));
1073 error(ERROR_OUTPUT|0, con->fd, "%-21s %-*s%7d %-1s %.-8s %s %s", job->name, sizeof(job->label), job->label, job->pid, job->queue->name, job->owner->user->name, fmttime(AT_TIME_FORMAT, job->start), job->period);
1145 * order job by <start,name>
1167 * if its too big then rename to .old and start fresh
1399 state->table.job.discipline.key = offsetof(Job_t, start);