mirror of
https://gitlab.labs.nic.cz/labs/bird.git
synced 2024-05-11 16:54:54 +00:00
Implemented timers. Using bird_clock_t for absolute time from now...
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* BIRD Timers
|
||||
* BIRD -- Unix Timers
|
||||
*
|
||||
* (c) 1998 Martin Mares <mj@ucw.cz>
|
||||
*
|
||||
@@ -9,18 +9,26 @@
|
||||
#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;
|
||||
/* internal fields should be here */
|
||||
resource r;
|
||||
void (*hook)(struct timer *);
|
||||
void *data;
|
||||
unsigned randomize; /* Amount of randomization */
|
||||
node n; /* Internal link */
|
||||
clock_t expires; /* 0=inactive */
|
||||
} timer;
|
||||
|
||||
timer *tm_new(pool *, void (*hook)(timer *), void *data);
|
||||
timer *tm_new(pool *);
|
||||
void tm_start(timer *, unsigned after);
|
||||
void tm_stop(timer *);
|
||||
void tm_trigger(timer *);
|
||||
void tm_dump_all(void);
|
||||
|
||||
extern clock_t now;
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user