Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/libs/
Drwlock.rs35 pub struct RwLock<T> { struct
53 inner: &'a RwLock<T>, argument
64 unsafe impl<T: Send> Send for RwLock<T> {} implementation
65 unsafe impl<T: Send + Sync> Sync for RwLock<T> {} implementation
68 impl<T> RwLock<T> { impl
82 let RwLock { data, .. } = self; in into_inner() localVariable
281 impl<T: Default> Default for RwLock<T> { implementation
288 impl<T> From<T> for RwLock<T> { implementation