Searched refs:TimerList (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/usr.sbin/ppp/
H A Dtimer.c52 static struct pppTimer *TimerList = NULL, *ExpiredList = NULL; variable in typeref:struct:pppTimer
101 * need to adjust TimerList->rest (yet).
103 if (TimerList && getitimer(ITIMER_REAL, &itimer) == 0)
104 ticks = RESTVAL(itimer) - TimerList->rest;
107 for (t = TimerList; t; t = t->next) {
128 TimerList = tp;
144 * A RUNNING timer must be removed from TimerList (->next list).
153 for (t = TimerList; t != tp && t != NULL; t = t->next)
160 TimerList = t->next;
161 if (TimerList
[all...]

Completed in 157 milliseconds