Lines Matching defs:timeouts
63 static struct timeout *timeouts;
174 * Call any expired timeouts, and then if there's still
178 if (timeouts) {
181 if (timespeccmp(&timeouts->when, &time_now, <=)) {
182 t = timeouts;
183 timeouts = timeouts->next;
196 timespecsub(&timeouts->when, &time_now, &howlong);
379 for (q = timeouts; q; q = q->next) {
384 timeouts = q->next;
412 if (!timeouts || timespeccmp(&timeouts->when, &q->when, >)) {
413 q->next = timeouts;
414 timeouts = q;
419 for (t = timeouts; t->next; t = t->next) {
439 for (q = timeouts; q; q = q->next) {
444 timeouts = q->next;