Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/time/
Dtimer.rs87 let timer_list = &mut TIMER_LIST.lock(); in activate() localVariable
90 if timer_list.is_empty() { in activate()
93 timer_list.push_back(inner_guard.self_ref.upgrade().unwrap()); in activate()
96 drop(timer_list); in activate()
102 for (pos, elt) in timer_list.iter().enumerate() { in activate()
108 let mut temp_list: LinkedList<Arc<Timer>> = timer_list.split_off(split_pos); in activate()
109 timer_list.push_back(inner_guard.self_ref.upgrade().unwrap()); in activate()
110 timer_list.append(&mut temp_list); in activate()
112 drop(timer_list); in activate()
173 let timer_list = TIMER_LIST.try_lock(); in run() localVariable
[all …]