Home
last modified time | relevance | path

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

/DragonOS-0.1.9/kernel/src/exception/
Dirqdesc.rs82 threads_active: AtomicI64, field
120 threads_active: AtomicI64::new(0), in new()
131 pub fn threads_active(&self) -> i64 { in threads_active() method
132 self.threads_active.load(Ordering::SeqCst) in threads_active()
137 self.threads_active.fetch_add(1, Ordering::SeqCst) in inc_threads_active()
143 self.threads_active.fetch_sub(1, Ordering::SeqCst) in dec_threads_active()