Home
last modified time | relevance | path

Searched refs:tm_max (Results 1 – 4 of 4) sorted by relevance

/dragonfly/usr.sbin/rtadvd/
HDtimer.c56 static struct timespec tm_max; variable
62 tm_limit.tv_sec = (-1) & ~((time_t)1 << ((sizeof(tm_max.tv_sec) * 8) - 1)); in rtadvd_timer_init()
63 tm_limit.tv_nsec = (-1) & ~((long)1 << ((sizeof(tm_max.tv_nsec) * 8) - 1)); in rtadvd_timer_init()
64 tm_max = tm_limit; in rtadvd_timer_init()
130 rat->rat_tm = tm_max; in rtadvd_add_timer()
162 tm_max = tm_limit; in rtadvd_check_timer()
171 if (TS_CMP(&rat->rat_tm, &tm_max, <)) in rtadvd_check_timer()
172 tm_max = rat->rat_tm; in rtadvd_check_timer()
174 if (TS_CMP(&tm_max, &tm_limit, ==)) { in rtadvd_check_timer()
177 } else if (TS_CMP(&tm_max, &now, <)) { in rtadvd_check_timer()
[all …]
/dragonfly/usr.sbin/rtsold/
HDrtsold.c57 struct timeval tm_max = {0x7fffffff, 0x7fffffff}; variable
477 rtsol_timer = tm_max; in rtsol_check_timer()
554 if (TIMEVAL_EQ(rtsol_timer, tm_max)) { in rtsol_check_timer()
597 ifinfo->timer = tm_max; /* stop timer(valid?) */ in rtsol_timer_update()
630 if (TIMEVAL_EQ(ifinfo->timer, tm_max)) { in rtsol_timer_update()
631 ifinfo->expire = tm_max; in rtsol_timer_update()
HDdump.c85 if (ifinfo->timer.tv_sec == tm_max.tv_sec && in dump_interface_status()
86 ifinfo->timer.tv_usec == tm_max.tv_usec) in dump_interface_status()
HDrtsold.h65 extern struct timeval tm_max;