Home
last modified time | relevance | path

Searched defs:TimerFunction (Results 1 – 2 of 2) sorted by relevance

/DragonOS/kernel/src/time/
H A Dtimer.rs38 pub trait TimerFunction: Send + Sync + Debug { interface
119 pub fn new(timer_func: Box<dyn TimerFunction>, expire_jiffies: u64) -> Arc<Self> { in new()
/DragonOS/kernel/src/process/
H A Dtimer.rs36 pub fn new(timer_func: Box<dyn TimerFunction>, second: u64) -> Self { in new()