Sets the address of the three-page region in the VM's address space.
(&self, offset: usize)
| 785 | /// Sets the address of the three-page region in the VM's address space. |
| 786 | /// |
| 787 | fn set_tss_address(&self, offset: usize) -> vm::Result<()> { |
| 788 | self.fd |
| 789 | .set_tss_address(offset) |
| 790 | .map_err(|e| vm::HypervisorVmError::SetTssAddress(e.into())) |
| 791 | } |
| 792 | |
| 793 | #[cfg(any(target_arch = "x86_64", target_arch = "aarch64"))] |
| 794 | /// |
no outgoing calls
no test coverage detected