2 * Bacula job queue routines.
4 * This code consists of three queues, the waiting_jobs
5 * queue, where jobs are initially queued, the ready_jobs
6 * queue, where jobs are placed when all the resources are
7 * allocated and they can immediately be run, and the
8 * running queue where jobs are placed when they are
11 * Kern Sibbald, July MMIII
15 * This code was adapted from the Bacula workq, which was
16 * adapted from "Programming with POSIX Threads", by
21 Bacula® - The Network Backup Solution
23 Copyright (C) 2003-2006 Free Software Foundation Europe e.V.
25 The main author of Bacula is Kern Sibbald, with contributions from
26 many others, a complete list can be found in the file AUTHORS.
27 This program is Free Software; you can redistribute it and/or
28 modify it under the terms of version two of the GNU General Public
29 License as published by the Free Software Foundation plus additions
30 that are listed in the file LICENSE.
32 This program is distributed in the hope that it will be useful, but
33 WITHOUT ANY WARRANTY; without even the implied warranty of
34 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
35 General Public License for more details.
37 You should have received a copy of the GNU General Public License
38 along with this program; if not, write to the Free Software
39 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
42 Bacula® is a registered trademark of John Walker.
43 The licensor of Bacula is the Free Software Foundation Europe
44 (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
45 Switzerland, email:ftf@fsfeurope.org.
53 /* Forward referenced functions */
54 extern "C" void *jobq_server(void *arg);
55 extern "C" void *sched_wait(void *arg);
57 static int start_server(jobq_t *jq);
58 static bool acquire_resources(JCR *jcr);
63 * Initialize a job queue
65 * Returns: 0 on success
68 int jobq_init(jobq_t *jq, int threads, void *(*engine)(void *arg))
71 jobq_item_t *item = NULL;
73 if ((stat = pthread_attr_init(&jq->attr)) != 0) {
75 Jmsg1(NULL, M_ERROR, 0, _("pthread_attr_init: ERR=%s\n"), be.strerror(stat));
78 if ((stat = pthread_attr_setdetachstate(&jq->attr, PTHREAD_CREATE_DETACHED)) != 0) {
79 pthread_attr_destroy(&jq->attr);
82 if ((stat = pthread_mutex_init(&jq->mutex, NULL)) != 0) {
84 Jmsg1(NULL, M_ERROR, 0, _("pthread_mutex_init: ERR=%s\n"), be.strerror(stat));
85 pthread_attr_destroy(&jq->attr);
88 if ((stat = pthread_cond_init(&jq->work, NULL)) != 0) {
90 Jmsg1(NULL, M_ERROR, 0, _("pthread_cond_init: ERR=%s\n"), be.strerror(stat));
91 pthread_mutex_destroy(&jq->mutex);
92 pthread_attr_destroy(&jq->attr);
96 jq->max_workers = threads; /* max threads to create */
97 jq->num_workers = 0; /* no threads yet */
98 jq->idle_workers = 0; /* no idle threads */
99 jq->engine = engine; /* routine to run */
100 jq->valid = JOBQ_VALID;
101 /* Initialize the job queues */
102 jq->waiting_jobs = New(dlist(item, &item->link));
103 jq->running_jobs = New(dlist(item, &item->link));
104 jq->ready_jobs = New(dlist(item, &item->link));
109 * Destroy the job queue
111 * Returns: 0 on success
114 int jobq_destroy(jobq_t *jq)
116 int stat, stat1, stat2;
118 if (jq->valid != JOBQ_VALID) {
121 if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
123 Jmsg1(NULL, M_ERROR, 0, _("pthread_mutex_lock: ERR=%s\n"), be.strerror(stat));
126 jq->valid = 0; /* prevent any more operations */
129 * If any threads are active, wake them
131 if (jq->num_workers > 0) {
133 if (jq->idle_workers) {
134 if ((stat = pthread_cond_broadcast(&jq->work)) != 0) {
136 Jmsg1(NULL, M_ERROR, 0, _("pthread_cond_broadcast: ERR=%s\n"), be.strerror(stat));
137 pthread_mutex_unlock(&jq->mutex);
141 while (jq->num_workers > 0) {
142 if ((stat = pthread_cond_wait(&jq->work, &jq->mutex)) != 0) {
144 Jmsg1(NULL, M_ERROR, 0, _("pthread_cond_wait: ERR=%s\n"), be.strerror(stat));
145 pthread_mutex_unlock(&jq->mutex);
150 if ((stat = pthread_mutex_unlock(&jq->mutex)) != 0) {
152 Jmsg1(NULL, M_ERROR, 0, _("pthread_mutex_unlock: ERR=%s\n"), be.strerror(stat));
155 stat = pthread_mutex_destroy(&jq->mutex);
156 stat1 = pthread_cond_destroy(&jq->work);
157 stat2 = pthread_attr_destroy(&jq->attr);
158 delete jq->waiting_jobs;
159 delete jq->running_jobs;
160 delete jq->ready_jobs;
161 return (stat != 0 ? stat : (stat1 != 0 ? stat1 : stat2));
170 * Wait until schedule time arrives before starting. Normally
171 * this routine is only used for jobs started from the console
172 * for which the user explicitly specified a start time. Otherwise
173 * most jobs are put into the job queue only when their
174 * scheduled time arives.
177 void *sched_wait(void *arg)
179 JCR *jcr = ((wait_pkt *)arg)->jcr;
180 jobq_t *jq = ((wait_pkt *)arg)->jq;
182 Dmsg0(2300, "Enter sched_wait.\n");
184 time_t wtime = jcr->sched_time - time(NULL);
185 set_jcr_job_status(jcr, JS_WaitStartTime);
186 /* Wait until scheduled time arrives */
188 Jmsg(jcr, M_INFO, 0, _("Job %s waiting %d seconds for scheduled start time.\n"),
191 /* Check every 30 seconds if canceled */
193 Dmsg3(2300, "Waiting on sched time, jobid=%d secs=%d use=%d\n",
194 jcr->JobId, wtime, jcr->use_count());
198 bmicrosleep(wtime, 0);
199 if (job_canceled(jcr)) {
202 wtime = jcr->sched_time - time(NULL);
204 Dmsg1(200, "resched use=%d\n", jcr->use_count());
206 free_jcr(jcr); /* we are done with jcr */
207 Dmsg0(2300, "Exit sched_wait\n");
212 * Add a job to the queue
213 * jq is a queue that was created with jobq_init
215 int jobq_add(jobq_t *jq, JCR *jcr)
218 jobq_item_t *item, *li;
219 bool inserted = false;
220 time_t wtime = jcr->sched_time - time(NULL);
224 if (!jcr->term_wait_inited) {
225 /* Initialize termination condition variable */
226 if ((stat = pthread_cond_init(&jcr->term_wait, NULL)) != 0) {
228 Jmsg1(jcr, M_FATAL, 0, _("Unable to init job cond variable: ERR=%s\n"), be.strerror(stat));
231 jcr->term_wait_inited = true;
234 Dmsg3(2300, "jobq_add jobid=%d jcr=0x%x use_count=%d\n", jcr->JobId, jcr, jcr->use_count());
235 if (jq->valid != JOBQ_VALID) {
236 Jmsg0(jcr, M_ERROR, 0, "Jobq_add queue not initialized.\n");
240 jcr->inc_use_count(); /* mark jcr in use by us */
241 Dmsg3(2300, "jobq_add jobid=%d jcr=0x%x use_count=%d\n", jcr->JobId, jcr, jcr->use_count());
242 if (!job_canceled(jcr) && wtime > 0) {
243 set_thread_concurrency(jq->max_workers + 2);
244 sched_pkt = (wait_pkt *)malloc(sizeof(wait_pkt));
245 sched_pkt->jcr = jcr;
247 stat = pthread_create(&id, &jq->attr, sched_wait, (void *)sched_pkt);
248 if (stat != 0) { /* thread not created */
250 Jmsg1(jcr, M_ERROR, 0, _("pthread_thread_create: ERR=%s\n"), be.strerror(stat));
255 if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
257 Jmsg1(jcr, M_ERROR, 0, _("pthread_mutex_lock: ERR=%s\n"), be.strerror(stat));
258 free_jcr(jcr); /* release jcr */
262 if ((item = (jobq_item_t *)malloc(sizeof(jobq_item_t))) == NULL) {
263 free_jcr(jcr); /* release jcr */
268 if (job_canceled(jcr)) {
269 /* Add job to ready queue so that it is canceled quickly */
270 jq->ready_jobs->prepend(item);
271 Dmsg1(2300, "Prepended job=%d to ready queue\n", jcr->JobId);
273 /* Add this job to the wait queue in priority sorted order */
274 foreach_dlist(li, jq->waiting_jobs) {
275 Dmsg2(2300, "waiting item jobid=%d priority=%d\n",
276 li->jcr->JobId, li->jcr->JobPriority);
277 if (li->jcr->JobPriority > jcr->JobPriority) {
278 jq->waiting_jobs->insert_before(item, li);
279 Dmsg2(2300, "insert_before jobid=%d before waiting job=%d\n",
280 li->jcr->JobId, jcr->JobId);
285 /* If not jobs in wait queue, append it */
287 jq->waiting_jobs->append(item);
288 Dmsg1(2300, "Appended item jobid=%d to waiting queue\n", jcr->JobId);
292 /* Ensure that at least one server looks at the queue. */
293 stat = start_server(jq);
295 pthread_mutex_unlock(&jq->mutex);
296 Dmsg0(2300, "Return jobq_add\n");
301 * Remove a job from the job queue. Used only by cancel_job().
302 * jq is a queue that was created with jobq_init
303 * work_item is an element of work
305 * Note, it is "removed" from the job queue.
306 * If you want to cancel it, you need to provide some external means
307 * of doing so (e.g. pthread_kill()).
309 int jobq_remove(jobq_t *jq, JCR *jcr)
315 Dmsg2(2300, "jobq_remove jobid=%d jcr=0x%x\n", jcr->JobId, jcr);
316 if (jq->valid != JOBQ_VALID) {
320 if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
322 Jmsg1(NULL, M_ERROR, 0, _("pthread_mutex_lock: ERR=%s\n"), be.strerror(stat));
326 foreach_dlist(item, jq->waiting_jobs) {
327 if (jcr == item->jcr) {
333 pthread_mutex_unlock(&jq->mutex);
334 Dmsg2(2300, "jobq_remove jobid=%d jcr=0x%x not in wait queue\n", jcr->JobId, jcr);
338 /* Move item to be the first on the list */
339 jq->waiting_jobs->remove(item);
340 jq->ready_jobs->prepend(item);
341 Dmsg2(2300, "jobq_remove jobid=%d jcr=0x%x moved to ready queue\n", jcr->JobId, jcr);
343 stat = start_server(jq);
345 pthread_mutex_unlock(&jq->mutex);
346 Dmsg0(2300, "Return jobq_remove\n");
352 * Start the server thread if it isn't already running
354 static int start_server(jobq_t *jq)
360 * if any threads are idle, wake one --
361 * actually we do a broadcast because on /lib/tls
362 * these signals seem to get lost from time to time.
364 if (jq->idle_workers > 0) {
365 Dmsg0(2300, "Signal worker to wake up\n");
366 if ((stat = pthread_cond_broadcast(&jq->work)) != 0) {
368 Jmsg1(NULL, M_ERROR, 0, _("pthread_cond_signal: ERR=%s\n"), be.strerror(stat));
371 } else if (jq->num_workers < jq->max_workers) {
372 Dmsg0(2300, "Create worker thread\n");
373 /* No idle threads so create a new one */
374 set_thread_concurrency(jq->max_workers + 1);
375 if ((stat = pthread_create(&id, &jq->attr, jobq_server, (void *)jq)) != 0) {
377 Jmsg1(NULL, M_ERROR, 0, _("pthread_create: ERR=%s\n"), be.strerror(stat));
386 * This is the worker thread that serves the job queue.
387 * When all the resources are acquired for the job,
388 * it will call the user's engine.
391 void *jobq_server(void *arg)
393 struct timespec timeout;
394 jobq_t *jq = (jobq_t *)arg;
395 jobq_item_t *je; /* job entry in queue */
397 bool timedout = false;
400 Dmsg0(2300, "Start jobq_server\n");
401 if ((stat = pthread_mutex_lock(&jq->mutex)) != 0) {
403 Jmsg1(NULL, M_ERROR, 0, _("pthread_mutex_lock: ERR=%s\n"), be.strerror(stat));
412 Dmsg0(2300, "Top of for loop\n");
413 if (!work && !jq->quit) {
414 gettimeofday(&tv, &tz);
416 timeout.tv_sec = tv.tv_sec + 4;
420 * Wait 4 seconds, then if no more work, exit
422 Dmsg0(2300, "pthread_cond_timedwait()\n");
423 stat = pthread_cond_timedwait(&jq->work, &jq->mutex, &timeout);
424 if (stat == ETIMEDOUT) {
425 Dmsg0(2300, "timedwait timedout.\n");
428 } else if (stat != 0) {
429 /* This shouldn't happen */
430 Dmsg0(2300, "This shouldn't happen\n");
432 pthread_mutex_unlock(&jq->mutex);
439 * If anything is in the ready queue, run it
441 Dmsg0(2300, "Checking ready queue.\n");
442 while (!jq->ready_jobs->empty() && !jq->quit) {
444 je = (jobq_item_t *)jq->ready_jobs->first();
446 jq->ready_jobs->remove(je);
447 if (!jq->ready_jobs->empty()) {
448 Dmsg0(2300, "ready queue not empty start server\n");
449 if (start_server(jq) != 0) {
451 pthread_mutex_unlock(&jq->mutex);
455 jq->running_jobs->append(je);
456 Dmsg1(2300, "Took jobid=%d from ready and appended to run\n", jcr->JobId);
458 /* Release job queue lock */
461 /* Call user's routine here */
462 Dmsg2(2300, "Calling user engine for jobid=%d use=%d\n", jcr->JobId,
466 Dmsg2(2300, "Back from user engine jobid=%d use=%d.\n", jcr->JobId,
469 /* Reacquire job queue lock */
471 Dmsg0(200, "Done lock mutex after running job. Release locks.\n");
472 jq->running_jobs->remove(je);
474 * Release locks if acquired. Note, they will not have
475 * been acquired for jobs canceled before they were
476 * put into the ready queue.
478 if (jcr->acquired_resource_locks) {
480 jcr->rstore->NumConcurrentJobs = 0;
481 Dmsg1(200, "Dec rncj=%d\n", jcr->rstore->NumConcurrentJobs);
484 jcr->wstore->NumConcurrentJobs--;
485 Dmsg1(200, "Dec wncj=%d\n", jcr->wstore->NumConcurrentJobs);
487 jcr->client->NumConcurrentJobs--;
488 jcr->job->NumConcurrentJobs--;
489 jcr->acquired_resource_locks = false;
493 * Reschedule the job if necessary and requested
495 if (jcr->job->RescheduleOnError &&
496 jcr->JobStatus != JS_Terminated &&
497 jcr->JobStatus != JS_Canceled &&
498 jcr->job->RescheduleTimes > 0 &&
499 jcr->JobType == JT_BACKUP &&
500 (jcr->job->RescheduleTimes == 0 ||
501 jcr->reschedule_count < jcr->job->RescheduleTimes)) {
502 char dt[50], dt2[50];
505 * Reschedule this job by cleaning it up, but
506 * reuse the same JobId if possible.
508 time_t now = time(NULL);
509 jcr->reschedule_count++;
510 jcr->sched_time = now + jcr->job->RescheduleInterval;
511 bstrftime(dt, sizeof(dt), now);
512 bstrftime(dt2, sizeof(dt2), jcr->sched_time);
513 Dmsg4(2300, "Rescheduled Job %s to re-run in %d seconds.(now=%u,then=%u)\n", jcr->Job,
514 (int)jcr->job->RescheduleInterval, now, jcr->sched_time);
515 Jmsg(jcr, M_INFO, 0, _("Rescheduled Job %s at %s to re-run in %d seconds (%s).\n"),
516 jcr->Job, dt, (int)jcr->job->RescheduleInterval, dt2);
517 dird_free_jcr_pointers(jcr); /* partial cleanup old stuff */
519 set_jcr_job_status(jcr, JS_WaitStartTime);
520 jcr->SDJobStatus = 0;
521 if (jcr->JobBytes == 0) {
522 Dmsg2(2300, "Requeue job=%d use=%d\n", jcr->JobId, jcr->use_count());
524 jobq_add(jq, jcr); /* queue the job to run again */
526 free_jcr(jcr); /* release jcr */
527 free(je); /* free the job entry */
528 continue; /* look for another job to run */
531 * Something was actually backed up, so we cannot reuse
532 * the old JobId or there will be database record
533 * conflicts. We now create a new job, copying the
534 * appropriate fields.
536 JCR *njcr = new_jcr(sizeof(JCR), dird_free_jcr);
537 set_jcr_defaults(njcr, jcr->job);
538 njcr->reschedule_count = jcr->reschedule_count;
539 njcr->sched_time = jcr->sched_time;
540 njcr->JobLevel = jcr->JobLevel;
541 njcr->JobStatus = -1;
542 set_jcr_job_status(njcr, jcr->JobStatus);
544 copy_rstorage(njcr, jcr->rstorage, _("previous Job"));
549 copy_wstorage(njcr, jcr->wstorage, _("previous Job"));
553 njcr->messages = jcr->messages;
554 Dmsg0(2300, "Call to run new job\n");
556 run_job(njcr); /* This creates a "new" job */
557 free_jcr(njcr); /* release "new" jcr */
559 Dmsg0(2300, "Back from running new job.\n");
561 /* Clean up and release old jcr */
563 db_close_database(jcr, jcr->db);
566 Dmsg2(2300, "====== Termination job=%d use_cnt=%d\n", jcr->JobId, jcr->use_count());
567 jcr->SDJobStatus = 0;
568 V(jq->mutex); /* release internal lock */
570 free(je); /* release job entry */
571 P(jq->mutex); /* reacquire job queue lock */
574 * If any job in the wait queue can be run,
575 * move it to the ready queue
577 Dmsg0(2300, "Done check ready, now check wait queue.\n");
578 if (!jq->waiting_jobs->empty() && !jq->quit) {
580 je = (jobq_item_t *)jq->waiting_jobs->first();
581 jobq_item_t *re = (jobq_item_t *)jq->running_jobs->first();
583 Priority = re->jcr->JobPriority;
584 Dmsg2(2300, "JobId %d is running. Look for pri=%d\n", re->jcr->JobId, Priority);
586 Priority = je->jcr->JobPriority;
587 Dmsg1(2300, "No job running. Look for Job pri=%d\n", Priority);
590 * Walk down the list of waiting jobs and attempt
591 * to acquire the resources it needs.
594 /* je is current job item on the queue, jn is the next one */
596 jobq_item_t *jn = (jobq_item_t *)jq->waiting_jobs->next(je);
598 Dmsg3(2300, "Examining Job=%d JobPri=%d want Pri=%d\n",
599 jcr->JobId, jcr->JobPriority, Priority);
601 /* Take only jobs of correct Priority */
602 if (jcr->JobPriority != Priority) {
603 set_jcr_job_status(jcr, JS_WaitPriority);
607 if (!acquire_resources(jcr)) {
608 /* If resource conflict, job is canceled */
609 if (!job_canceled(jcr)) {
610 je = jn; /* point to next waiting job */
616 * Got all locks, now remove it from wait queue and append it
617 * to the ready queue. Note, we may also get here if the
618 * job was canceled. Once it is "run", it will quickly
621 jq->waiting_jobs->remove(je);
622 jq->ready_jobs->append(je);
623 Dmsg1(2300, "moved JobId=%d from wait to ready queue\n", je->jcr->JobId);
624 je = jn; /* Point to next waiting job */
629 Dmsg0(2300, "Done checking wait queue.\n");
631 * If no more ready work and we are asked to quit, then do it
633 if (jq->ready_jobs->empty() && jq->quit) {
635 if (jq->num_workers == 0) {
636 Dmsg0(2300, "Wake up destroy routine\n");
637 /* Wake up destroy routine if he is waiting */
638 pthread_cond_broadcast(&jq->work);
642 Dmsg0(2300, "Check for work request\n");
644 * If no more work requests, and we waited long enough, quit
646 Dmsg2(2300, "timedout=%d read empty=%d\n", timedout,
647 jq->ready_jobs->empty());
648 if (jq->ready_jobs->empty() && timedout) {
649 Dmsg0(2300, "break big loop\n");
654 work = !jq->ready_jobs->empty() || !jq->waiting_jobs->empty();
657 * If a job is waiting on a Resource, don't consume all
658 * the CPU time looping looking for work, and even more
659 * important, release the lock so that a job that has
660 * terminated can give us the resource.
663 bmicrosleep(2, 0); /* pause for 2 seconds */
665 /* Recompute work as something may have changed in last 2 secs */
666 work = !jq->ready_jobs->empty() || !jq->waiting_jobs->empty();
668 Dmsg1(2300, "Loop again. work=%d\n", work);
669 } /* end of big for loop */
671 Dmsg0(200, "unlock mutex\n");
673 Dmsg0(2300, "End jobq_server\n");
678 * See if we can acquire all the necessary resources for the job (JCR)
680 * Returns: true if successful
681 * false if resource failure
683 static bool acquire_resources(JCR *jcr)
685 bool skip_this_jcr = false;
687 jcr->acquired_resource_locks = false;
689 Dmsg1(200, "Rstore=%s\n", jcr->rstore->name());
691 * Let only one Restore/verify job run at a time regardless
692 * of MaxConcurrentJobs.
694 if (jcr->rstore->NumConcurrentJobs == 0) {
695 jcr->rstore->NumConcurrentJobs = 1;
696 Dmsg0(200, "Set rncj=1\n");
698 Dmsg1(200, "Fail rncj=%d\n", jcr->rstore->NumConcurrentJobs);
699 set_jcr_job_status(jcr, JS_WaitStoreRes);
705 if (jcr->rstore == jcr->wstore) { /* deadlock */
706 jcr->rstore->NumConcurrentJobs = 0; /* back out rstore */
707 Jmsg(jcr, M_FATAL, 0, _("Job canceled. Attempt to read and write same device.\n"));
708 set_jcr_job_status(jcr, JS_Canceled);
711 if (jcr->wstore->NumConcurrentJobs == 0 &&
712 jcr->wstore->NumConcurrentJobs < jcr->wstore->MaxConcurrentJobs) {
713 /* Simple case, first job */
714 jcr->wstore->NumConcurrentJobs = 1;
715 Dmsg0(200, "Set wncj=1\n");
716 } else if (jcr->wstore->NumConcurrentJobs < jcr->wstore->MaxConcurrentJobs) {
717 jcr->wstore->NumConcurrentJobs++;
718 Dmsg1(200, "Inc wncj=%d\n", jcr->wstore->NumConcurrentJobs);
719 } else if (jcr->rstore) {
720 jcr->rstore->NumConcurrentJobs = 0; /* back out rstore */
721 Dmsg1(200, "Fail wncj=%d\n", jcr->wstore->NumConcurrentJobs);
722 skip_this_jcr = true;
724 Dmsg1(200, "Fail wncj=%d\n", jcr->wstore->NumConcurrentJobs);
725 skip_this_jcr = true;
729 set_jcr_job_status(jcr, JS_WaitStoreRes);
733 if (jcr->client->NumConcurrentJobs < jcr->client->MaxConcurrentJobs) {
734 jcr->client->NumConcurrentJobs++;
736 /* Back out previous locks */
738 jcr->wstore->NumConcurrentJobs--;
739 Dmsg1(200, "Dec wncj=%d\n", jcr->wstore->NumConcurrentJobs);
742 jcr->rstore->NumConcurrentJobs = 0;
743 Dmsg1(200, "Dec rncj=%d\n", jcr->rstore->NumConcurrentJobs);
745 set_jcr_job_status(jcr, JS_WaitClientRes);
748 if (jcr->job->NumConcurrentJobs < jcr->job->MaxConcurrentJobs) {
749 jcr->job->NumConcurrentJobs++;
751 /* Back out previous locks */
753 jcr->wstore->NumConcurrentJobs--;
754 Dmsg1(200, "Dec wncj=%d\n", jcr->wstore->NumConcurrentJobs);
757 jcr->rstore->NumConcurrentJobs = 0;
758 Dmsg1(200, "Dec rncj=%d\n", jcr->rstore->NumConcurrentJobs);
760 jcr->client->NumConcurrentJobs--;
761 set_jcr_job_status(jcr, JS_WaitJobRes);
765 jcr->acquired_resource_locks = true;