(&self)
| 134 | unsafe impl RawRwLockUpgrade for RawCellRwLock { |
| 135 | #[inline] |
| 136 | fn lock_upgradable(&self) { |
| 137 | if !self.try_lock_upgradable() { |
| 138 | deadlock("upgradably+sharedly ", "RwLock") |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | #[inline] |
| 143 | fn try_lock_upgradable(&self) -> bool { |
nothing calls this directly
no test coverage detected