]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/btimers.h
Change copyright as per agreement with FSFE
[bacula/bacula] / bacula / src / lib / btimers.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  * Process and thread timer routines, built on top of watchdogs.
21  *
22  *    Nic Bellamy <nic@bellamy.co.nz>, October 2003.
23  *
24 */
25
26 #ifndef __BTIMERS_H_
27 #define __BTIMERS_H_
28
29 struct btimer_t {
30    watchdog_t *wd;                    /* Parent watchdog */
31    int type;
32    bool killed;
33    pid_t pid;                         /* process id if TYPE_CHILD */
34    pthread_t tid;                     /* thread id if TYPE_PTHREAD */
35    BSOCK *bsock;                      /* Pointer to BSOCK */
36    JCR *jcr;                          /* Pointer to job control record */
37 };
38
39 #endif /* __BTIMERS_H_ */