Returns the state of the LAPIC (Local Advanced Programmable Interrupt Controller).
(&self)
| 2274 | /// Returns the state of the LAPIC (Local Advanced Programmable Interrupt Controller). |
| 2275 | /// |
| 2276 | fn get_lapic(&self) -> cpu::Result<LapicState> { |
| 2277 | Ok(self |
| 2278 | .fd |
| 2279 | .get_lapic() |
| 2280 | .map_err(|e| cpu::HypervisorCpuError::GetlapicState(e.into()))? |
| 2281 | .into()) |
| 2282 | } |
| 2283 | |
| 2284 | #[cfg(target_arch = "x86_64")] |
| 2285 | /// |
no outgoing calls