Home
last modified time | relevance | path

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

/DragonOS/kernel/src/exception/
H A Dirqdesc.rs83 threads_active: AtomicI64, field
122 threads_active: AtomicI64::new(0), in new()
134 pub fn threads_active(&self) -> i64 { in threads_active() method
135 self.threads_active.load(Ordering::SeqCst) in threads_active()
140 self.threads_active.fetch_add(1, Ordering::SeqCst) in inc_threads_active()
146 self.threads_active.fetch_sub(1, Ordering::SeqCst) in dec_threads_active()