]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/watchdog.h
Backport from BEE
[bacula/bacula] / bacula / src / lib / watchdog.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2002-2014 Free Software Foundation Europe e.V.
5
6    The main author of Bacula is Kern Sibbald, with contributions from many
7    others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    Bacula® is a registered trademark of Kern Sibbald.
15 */
16 /*
17  * Watchdog timer routines
18  *
19  *    Kern Sibbald, December MMII
20  *
21 */
22
23 enum {
24    TYPE_CHILD = 1,
25    TYPE_PTHREAD,
26    TYPE_BSOCK
27 };
28
29 #define TIMEOUT_SIGNAL SIGUSR2
30
31 struct s_watchdog_t {
32         bool one_shot;
33         utime_t interval;
34         void (*callback)(struct s_watchdog_t *wd);
35         void (*destructor)(struct s_watchdog_t *wd);
36         void *data;
37         /* Private data below - don't touch outside of watchdog.c */
38         dlink link;
39         utime_t next_fire;
40 };
41 typedef struct s_watchdog_t watchdog_t;
42
43 /* Exported globals */
44 extern utime_t DLL_IMP_EXP watchdog_time;             /* this has granularity of SLEEP_TIME */
45 extern utime_t DLL_IMP_EXP watchdog_sleep_time;      /* examine things every 60 seconds */