1998-04-22 20:58:34 +08:00
|
|
|
/*
|
1998-05-24 22:40:29 +08:00
|
|
|
* BIRD -- Unix Timers
|
1998-04-22 20:58:34 +08:00
|
|
|
*
|
|
|
|
* (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_
|
|
|
|
|
2001-03-06 21:40:39 +08:00
|
|
|
#include <time.h>
|
1998-05-24 22:40:29 +08:00
|
|
|
|
2017-06-01 18:33:20 +08:00
|
|
|
#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_); }
|
2011-07-07 23:43:39 +08:00
|
|
|
|
1998-04-22 20:58:34 +08:00
|
|
|
|
2017-06-01 18:33:20 +08:00
|
|
|
#define TIME_INFINITY ((s64) 0x7fffffffffffffff)
|
2017-05-11 07:29:39 +08:00
|
|
|
|
1999-11-30 22:01:39 +08:00
|
|
|
|
1998-04-22 20:58:34 +08:00
|
|
|
#endif
|