Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dtimers.c64 static struct sys_timeo *next_timeout; variable
286 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 …]