]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/btimers.h
dhb Medialist : created context menu function and moved lines which create
[bacula/bacula] / bacula / src / lib / btimers.h
1 /*
2  * Process and thread timer routines, built on top of watchdogs.
3  *
4  *    Nic Bellamy <nic@bellamy.co.nz>, October 2003.
5  *
6 */
7 /*
8    Bacula® - The Network Backup Solution
9
10    Copyright (C) 2003-2006 Free Software Foundation Europe e.V.
11
12    The main author of Bacula is Kern Sibbald, with contributions from
13    many others, a complete list can be found in the file AUTHORS.
14    This program is Free Software; you can redistribute it and/or
15    modify it under the terms of version two of the GNU General Public
16    License as published by the Free Software Foundation plus additions
17    that are listed in the file LICENSE.
18
19    This program is distributed in the hope that it will be useful, but
20    WITHOUT ANY WARRANTY; without even the implied warranty of
21    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22    General Public License for more details.
23
24    You should have received a copy of the GNU General Public License
25    along with this program; if not, write to the Free Software
26    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
27    02110-1301, USA.
28
29    Bacula® is a registered trademark of John Walker.
30    The licensor of Bacula is the Free Software Foundation Europe
31    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
32    Switzerland, email:ftf@fsfeurope.org.
33 */
34
35 typedef struct s_btimer_t {
36    watchdog_t *wd;                    /* Parent watchdog */
37    int type;
38    bool killed;
39    pid_t pid;                         /* process id if TYPE_CHILD */
40    pthread_t tid;                     /* thread id if TYPE_PTHREAD */
41    BSOCK *bsock;                      /* Pointer to BSOCK */
42 } btimer_t;
43
44 /* EOF */