aboutsummaryrefslogtreecommitdiffstats
path: root/sysdep/unix/timer.h
blob: 1c4f6e3b9615993cd918d26df9b3c23df6470c8f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 *	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 <time.h>

#include "lib/birdlib.h"
#include "lib/timer.h"


typedef struct timer2 timer;

static inline timer *tm_new(pool *p)
{ return (void *) tm2_new(p); }

static inline void tm_start(timer *t, bird_clock_t after)
{ tm2_start(t, after S_); }

static inline void tm_stop(timer *t)
{ tm2_stop(t); }

// void tm_dump_all(void);

//extern bird_clock_t now; 		/* Relative, monotonic time in seconds */
//extern bird_clock_t now_real;		/* Time in seconds since fixed known epoch */
//extern bird_clock_t boot_time;

static inline int tm_active(timer *t)
{ return tm2_active(t); }

static inline bird_clock_t tm_remains(timer *t)
{ return tm2_remains(t) TO_S; }

static inline void tm_start_max(timer *t, bird_clock_t after)
{ tm2_start_max(t, after S_); }

static inline timer * tm_new_set(pool *p, void (*hook)(timer *), void *data, uint rand, uint rec)
{ return tm2_new_init(p, hook, data, rec S_, rand S_); }


struct timeformat {
  char *fmt1, *fmt2;
  bird_clock_t limit;
};

bird_clock_t tm_parse_date(char *);	/* Convert date to bird_clock_t */
bird_clock_t tm_parse_datetime(char *);	/* Convert date to bird_clock_t */

#define TM_DATETIME_BUFFER_SIZE 32	/* Buffer size required by tm_format_datetime */
void
tm_format_datetime(char *x, struct timeformat *fmt_spec, bird_clock_t t);

#define TIME_INFINITY ((s64) 0x7fffffffffffffff)


#endif