X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fjobs.c;h=4b4472e54c0d801db1383d6d00202c209c1d5837;hb=c3249e6aa03ef10494a2a4a170bbed0cfc38a83e;hp=d469c101052c9f4f3a3418bd4c53801a046267fd;hpb=d05f95deefca2836b9f4904711a7fda1c52cd85b;p=src%2Fapp-framework-binder.git diff --git a/src/jobs.c b/src/jobs.c index d469c101..4b4472e5 100644 --- a/src/jobs.c +++ b/src/jobs.c @@ -29,6 +29,9 @@ #include #include +#ifndef NO_JOBS_WATCHDOG +#include +#endif #include "jobs.h" #include "sig-monitor.h" @@ -762,6 +765,12 @@ int jobs_start(int allowed_count, int start_count, int waiter_count, void (*star running = 0; remains = waiter_count; +#ifndef NO_JOBS_WATCHDOG + /* set the watchdog */ + if (sd_watchdog_enabled(0, NULL)) + sd_event_set_watchdog(get_sd_event_locked(), 1); +#endif + /* start at least one thread */ launched = 0; while ((launched + 1) < start_count) {