Home
last modified time | relevance | path

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

/DragonOS/kernel/src/libs/
H A Dmutex.rs30 pub struct Mutex<T> { struct
34 inner: SpinLock<MutexInner>, argument
40 lock: &'a Mutex<T>, argument
43 unsafe impl<T> Sync for Mutex<T> where T: Send {} implementation
45 impl<T> Mutex<T> { implementation