summaryrefslogtreecommitdiffstats
path: root/sysdep/unix/timer.h
blob: afb2668a30416d304d5c8640c948bdf69525ed75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 *	BIRD -- Unix Timers
 *
 *	(c) 1998 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#ifndef _BIRD_TIMER_H_
#define _BIRD_TIMER_H_

#include <sys/time.h>

#include "lib/resource.h"

typedef time_t bird_clock_t;		/* Use instead of time_t */

typedef struct timer {
  resource r;
  void (*hook)(struct timer *);
  void *data;
  unsigned randomize;			/* Amount of randomization */
  unsigned recurrent;			/* Timer recurrence */
  node n;				/* Internal link */
  bird_clock_t expires;			/* 0=inactive */
} timer;

timer *tm_new(pool *);
void tm_start(timer *, unsigned after);
void tm_stop(timer *);
void tm_dump_all(void);

extern bird_clock_t now;		/* Time in seconds since unknown epoch */

bird_clock_t tm_parse_date(char *);	/* Convert date to bird_clock_t */
void tm_format_date(char *, bird_clock_t);	/* Convert bird_clock_t to date */
#define TM_DATE_BUFFER_SIZE 12		/* Buffer size required by tm_format_date */

#endif