(file: &mut File, vmclock_content: &VMClockContent)
| 244 | } |
| 245 | |
| 246 | fn snapshot(&mut self) -> Result<&VMClockShmBody, ShmError> { |
| 247 | self.0.snapshot() |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | unsafe impl Send for Reader {} |
| 252 | |
| 253 | /// Indicates the current status of the VMClock. |
| 254 | #[derive(Debug, PartialEq)] |
| 255 | pub enum ClockDisruptionStatus { |
| 256 | Normal, |
| 257 | Disrupted(u64), |
| 258 | } |
| 259 | |
| 260 | /// Errors that can occur while initializing the VMClock. |
| 261 | /// |
no outgoing calls
no test coverage detected