if (first_far_timer <= now)
{
- clock_t limit = now + NEAR_TIMER_LIMIT;
+ bird_clock_t limit = now + NEAR_TIMER_LIMIT;
first_far_timer = TIME_INFINITY;
n = HEAD(far_timers);
while (m = n->next)
unsigned randomize; /* Amount of randomization */
unsigned recurrent; /* Timer recurrence */
node n; /* Internal link */
- clock_t expires; /* 0=inactive */
+ bird_clock_t expires; /* 0=inactive */
} timer;
timer *tm_new(pool *);
void tm_stop(timer *);
void tm_dump_all(void);
-extern clock_t now;
+extern bird_clock_t now;
#endif