Searched defs:PThreadMutex (Results 1 – 1 of 1) sorted by relevance
21 pub struct PThreadMutex<T> { struct23 raw: UnsafeCell<libc::pthread_mutex_t>,24 data: UnsafeCell<T>,26 pin: PhantomPinned,29 unsafe impl<T: Send> Send for PThreadMutex<T> {} implementation30 unsafe impl<T: Send> Sync for PThreadMutex<T> {} implementation33 impl<T> PinnedDrop for PThreadMutex<T> { implementation61 impl<T> PThreadMutex<T> { impl