Home
last modified time | relevance | path

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

/DragonOS/kernel/src/time/
H A Djiffies.rs16 pub static ref DEFAULT_CLOCK: Arc<ClocksourceJiffies> = ClocksourceJiffies::new();
30 pub struct ClocksourceJiffies(SpinLock<InnerJiffies>); struct
35 self_ref: Weak<ClocksourceJiffies>,
38 impl Clocksource for ClocksourceJiffies { implementation
72 impl ClocksourceJiffies { implementation
88 let jiffies = Arc::new(ClocksourceJiffies(SpinLock::new(InnerJiffies { in new()
97 pub fn clocksource_default_clock() -> Arc<ClocksourceJiffies> { in clocksource_default_clock()