Home
last modified time | relevance | path

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

/DragonOS/kernel/src/libs/
H A Drwlock.rs37 pub struct RwLock<T> { struct
56 inner: &'a RwLock<T>, argument
69 unsafe impl<T: Send> Send for RwLock<T> {} implementation
70 unsafe impl<T: Send + Sync> Sync for RwLock<T> {} implementation
73 impl<T> RwLock<T> { implementation
87 let RwLock { data, .. } = self; in into_inner() localVariable
380 impl<T: Default> Default for RwLock<T> { implementation
387 impl<T> From<T> for RwLock<T> { implementation