Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/time/
Dclocksource.rs37 pub static CUR_CLOCKSOURCE: SpinLock<Option<Arc<dyn Clocksource>>> = SpinLock::new(None); variable
811 if CUR_CLOCKSOURCE.lock().as_ref().is_some() { in clocksource_select()
813 let cur_clocksource = CUR_CLOCKSOURCE.lock().as_ref().unwrap().clone(); in clocksource_select()
818 CUR_CLOCKSOURCE.lock().replace(best); in clocksource_select()
823 CUR_CLOCKSOURCE.lock().replace(best); in clocksource_select()
830 let mut cur_clocksource = CUR_CLOCKSOURCE.lock(); in clocksource_boot_finish()