Home
last modified time | relevance | path

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

/DragonOS/kernel/src/time/
H A Dtimer.rs140 let mut timer_list = TIMER_LIST.lock_irqsave(); in activate() localVariable
144 if timer_list.is_empty() { in activate()
146 timer_list.push(( in activate()
152 drop(timer_list); in activate()
161 for (pos, elt) in timer_list.iter().enumerate() { in activate()
170 timer_list.insert(split_pos, (expire_jiffies, self_arc)); in activate()
172 drop(timer_list); in activate()
250 let timer_list = TIMER_LIST.try_lock_irqsave(); in run() localVariable
251 if timer_list.is_err() { in run()
254 let mut timer_list = timer_list.unwrap(); in run() localVariable
[all …]