(&self)
| 538 | /// Return a pointer to the interrupts structure |
| 539 | #[inline] |
| 540 | pub fn vm_store_context(&self) -> NonNull<Option<VmPtr<VMStoreContext>>> { |
| 541 | unsafe { self.vmctx_plus_offset_raw(self.offsets().ptr.vmctx_store_context()) } |
| 542 | } |
| 543 | |
| 544 | /// Return a pointer to the global epoch counter used by this instance. |
| 545 | #[cfg(target_has_atomic = "64")] |
no test coverage detected