Home
last modified time | relevance | path

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

/DragonOS-0.1.7/kernel/src/time/
Dtimer.rs79 let timer_list = &mut TIMER_LIST.lock(); in activate() localVariable
82 if timer_list.is_empty() { in activate()
85 timer_list.push_back(inner_guard.self_ref.upgrade().unwrap()); in activate()
88 drop(timer_list); in activate()
94 for (pos, elt) in timer_list.iter().enumerate() { in activate()
100 let mut temp_list: LinkedList<Arc<Timer>> = timer_list.split_off(split_pos); in activate()
101 timer_list.push_back(inner_guard.self_ref.upgrade().unwrap()); in activate()
102 timer_list.append(&mut temp_list); in activate()
104 drop(timer_list); in activate()
158 let timer_list = TIMER_LIST.try_lock(); in run() localVariable
[all …]