Home
last modified time | relevance | path

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

/openbsd/src/sys/kern/
Dkern_timeout.c75 struct circq timeout_new; /* [T] New, unscheduled timeouts */ variable
234 CIRCQ_INIT(&timeout_new); in timeout_startup()
317 CIRCQ_INSERT_TAIL(&timeout_new, &new->to_list); in timeout_add()
323 CIRCQ_INSERT_TAIL(&timeout_new, &new->to_list); in timeout_add()
414 CIRCQ_INSERT_TAIL(&timeout_new, &to->to_list); in timeout_abs_ts()
420 CIRCQ_INSERT_TAIL(&timeout_new, &to->to_list); in timeout_abs_ts()
627 if (CIRCQ_EMPTY(&timeout_new) && CIRCQ_EMPTY(&timeout_todo)) in timeout_hardclock_update()
742 if (!CIRCQ_EMPTY(&timeout_new)) in softclock()
743 first_new = timeout_from_circq(CIRCQ_FIRST(&timeout_new)); in softclock()
744 CIRCQ_CONCAT(&timeout_todo, &timeout_new); in softclock()
[all …]