taglinefilesource code
tm86net/tcp/timer.cstruct timer *tm;
tm105net/tcp/timer.cfor (tm = (struct timer *)timer_base;
tm106net/tcp/timer.ctm->next != NULL ;
tm107net/tcp/timer.ctm=(struct timer *)tm->next)
tm109net/tcp/timer.cif (tm->next == t)
tm111net/tcp/timer.ctm->next = t->next;
tm123net/tcp/timer.cstruct timer *tm;
tm153net/tcp/timer.cfor (tm = (struct timer *)timer_base; ; tm=(struct timer *)tm->next)
tm155net/tcp/timer.cif (tm->next == NULL || before (t->when,tm->next->when))
tm157net/tcp/timer.ct->next = tm->next;
tm158net/tcp/timer.ctm->next = t;