1998-04-22 12:58:34 +00:00
|
|
|
/*
|
1998-05-24 14:40:29 +00:00
|
|
|
* BIRD -- Unix Timers
|
1998-04-22 12:58:34 +00: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 13:40:39 +00:00
|
|
|
#include <time.h>
|
1998-05-24 14:40:29 +00:00
|
|
|
|
2017-06-01 10:33:20 +00: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 15:43:39 +00:00
|
|
|
|
1998-04-22 12:58:34 +00:00
|
|
|
|
2010-02-02 23:19:24 +00:00
|
|
|
struct timeformat {
|
|
|
|
char *fmt1, *fmt2;
|
|
|
|
bird_clock_t limit;
|
|
|
|
};
|
|
|
|
|
1999-08-03 19:29:27 +00:00
|
|
|
bird_clock_t tm_parse_date(char *); /* Convert date to bird_clock_t */
|
2005-02-14 11:58:46 +00:00
|
|
|
bird_clock_t tm_parse_datetime(char *); /* Convert date to bird_clock_t */
|
2010-02-02 23:19:24 +00:00
|
|
|
|
|
|
|
#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);
|
1999-08-03 19:29:27 +00:00
|
|
|
|
2017-06-01 10:33:20 +00:00
|
|
|
#define TIME_INFINITY ((s64) 0x7fffffffffffffff)
|
2017-05-10 23:29:39 +00:00
|
|
|
|
1999-11-30 14:01:39 +00:00
|
|
|
|
1998-04-22 12:58:34 +00:00
|
|
|
#endif
|