Update copyright dates
[src/app-framework-binder.git] / src / watchdog.c
index f9afd64..efe291d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016-2019 "IoT.bzh"
+ * Copyright (C) 2015-2020 "IoT.bzh"
  * Author José Bollo <jose.bollo@iot.bzh>
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
 #include <systemd/sd-daemon.h>
 
 #include "jobs.h"
+#include "systemd.h"
 
 int watchdog_activate()
 {
        /* set the watchdog */
-       if (sd_watchdog_enabled(0, NULL))
-               sd_event_set_watchdog(jobs_get_sd_event(), 1);
+       if (sd_watchdog_enabled(0, NULL)) {
+               jobs_acquire_event_manager();
+               sd_event_set_watchdog(systemd_get_event_loop(), 1);
+       }
        return 0;
 }