(&self)
| 183 | unsafe impl RawRwLockRecursive for RawCellRwLock { |
| 184 | #[inline] |
| 185 | fn lock_shared_recursive(&self) { |
| 186 | if !self.try_lock_shared_recursive() { |
| 187 | deadlock("recursively+sharedly ", "RwLock") |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | #[inline] |
| 192 | fn try_lock_shared_recursive(&self) -> bool { |
nothing calls this directly
no test coverage detected