mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Implemented timers. Using bird_clock_t for absolute time from now...
This commit is contained in:
parent
235562ca5a
commit
a2ccbb0b97
@ -10,6 +10,7 @@
|
|||||||
#define _BIRD_ROUTE_H_
|
#define _BIRD_ROUTE_H_
|
||||||
|
|
||||||
#include "lib/resource.h"
|
#include "lib/resource.h"
|
||||||
|
#include "lib/timer.h"
|
||||||
|
|
||||||
struct protocol;
|
struct protocol;
|
||||||
|
|
||||||
@ -106,7 +107,7 @@ typedef struct rte {
|
|||||||
byte flags; /* Flags (REF_...) */
|
byte flags; /* Flags (REF_...) */
|
||||||
byte pflags; /* Protocol-specific flags */
|
byte pflags; /* Protocol-specific flags */
|
||||||
word pref; /* Route preference */
|
word pref; /* Route preference */
|
||||||
u32 lastmod; /* Last modified (time) */
|
bird_clock_t lastmod; /* Last modified */
|
||||||
union { /* Protocol-dependent data (metrics etc.) */
|
union { /* Protocol-dependent data (metrics etc.) */
|
||||||
#ifdef CONFIG_STATIC
|
#ifdef CONFIG_STATIC
|
||||||
struct {
|
struct {
|
||||||
@ -144,6 +145,7 @@ rte *rte_get_temp(struct rtattr *);
|
|||||||
void rte_update(net *net, rte *new);
|
void rte_update(net *net, rte *new);
|
||||||
void rte_dump(rte *);
|
void rte_dump(rte *);
|
||||||
void rt_dump(rtable *);
|
void rt_dump(rtable *);
|
||||||
|
void rt_dump_all(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Route Attributes
|
* Route Attributes
|
||||||
|
@ -40,6 +40,11 @@ typedef u16 word;
|
|||||||
|
|
||||||
#define CPU_STRUCT_ALIGN 4
|
#define CPU_STRUCT_ALIGN 4
|
||||||
|
|
||||||
|
/* Timers */
|
||||||
|
|
||||||
|
#undef TIME_T_IS_64BIT
|
||||||
|
#define TIME_T_IS_SIGNED
|
||||||
|
|
||||||
/* Protocol options */
|
/* Protocol options */
|
||||||
|
|
||||||
#define CONFIG_STATIC
|
#define CONFIG_STATIC
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
log.c
|
log.c
|
||||||
main.c
|
main.c
|
||||||
timer.h
|
timer.h
|
||||||
|
io.c
|
||||||
|
unix.h
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* BIRD Timers
|
* BIRD -- Unix Timers
|
||||||
*
|
*
|
||||||
* (c) 1998 Martin Mares <mj@ucw.cz>
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
||||||
*
|
*
|
||||||
@ -9,18 +9,26 @@
|
|||||||
#ifndef _BIRD_TIMER_H_
|
#ifndef _BIRD_TIMER_H_
|
||||||
#define _BIRD_TIMER_H_
|
#define _BIRD_TIMER_H_
|
||||||
|
|
||||||
|
#include <sys/time.h>
|
||||||
|
|
||||||
#include "lib/resource.h"
|
#include "lib/resource.h"
|
||||||
|
|
||||||
|
typedef time_t bird_clock_t; /* Use instead of time_t */
|
||||||
|
|
||||||
typedef struct timer {
|
typedef struct timer {
|
||||||
resource r;
|
resource r;
|
||||||
void (*hook)(struct timer *);
|
void (*hook)(struct timer *);
|
||||||
void *data;
|
void *data;
|
||||||
/* internal fields should be here */
|
unsigned randomize; /* Amount of randomization */
|
||||||
|
node n; /* Internal link */
|
||||||
|
clock_t expires; /* 0=inactive */
|
||||||
} timer;
|
} timer;
|
||||||
|
|
||||||
timer *tm_new(pool *, void (*hook)(timer *), void *data);
|
timer *tm_new(pool *);
|
||||||
void tm_start(timer *, unsigned after);
|
void tm_start(timer *, unsigned after);
|
||||||
void tm_stop(timer *);
|
void tm_stop(timer *);
|
||||||
void tm_trigger(timer *);
|
void tm_dump_all(void);
|
||||||
|
|
||||||
|
extern clock_t now;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user