Searched refs:next_timeout (Results 1 – 1 of 1) sorted by relevance
64 static struct sys_timeo *next_timeout; variable286 if (next_timeout == NULL) { in sys_timeout_debug()287 next_timeout = timeout; in sys_timeout_debug()291 if (next_timeout->time > msecs) { in sys_timeout_debug()292 next_timeout->time -= msecs; in sys_timeout_debug()293 timeout->next = next_timeout; in sys_timeout_debug()294 next_timeout = timeout; in sys_timeout_debug()296 for(t = next_timeout; t != NULL; t = t->next) { in sys_timeout_debug()325 if (next_timeout == NULL) { in sys_untimeout()329 for (t = next_timeout, prev_t = NULL; t != NULL; prev_t = t, t = t->next) { in sys_untimeout()[all …]