]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/watchdog.h
d6b47e2d47f623a23d3b2f807ea735d964f186bb
[bacula/bacula] / bacula / src / lib / watchdog.h
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2016 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many 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    This notice must be preserved when any source code is 
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /*
20  * Watchdog timer routines
21  *
22  *    Kern Sibbald, December MMII
23  *
24 */
25
26 enum {
27    TYPE_CHILD = 1,
28    TYPE_PTHREAD,
29    TYPE_BSOCK
30 };
31
32 #define TIMEOUT_SIGNAL SIGUSR2
33
34 struct s_watchdog_t {
35         bool one_shot;
36         utime_t interval;
37         void (*callback)(struct s_watchdog_t *wd);
38         void (*destructor)(struct s_watchdog_t *wd);
39         void *data;
40         /* Private data below - don't touch outside of watchdog.c */
41         dlink link;
42         utime_t next_fire;
43 };
44 typedef struct s_watchdog_t watchdog_t;
45
46 /* Exported globals */
47 extern utime_t DLL_IMP_EXP watchdog_time;             /* this has granularity of SLEEP_TIME */
48 extern utime_t DLL_IMP_EXP watchdog_sleep_time;      /* examine things every 60 seconds */