tiny.sys.kvm.state
Defined in kvm.
API (4)
Types and contracts
Public types and contracts.
Values and defaults
Public values and defaults.
Source
Source: lib/sys/src/kvm/root.zig:10
zig
pub const state = @import("state.zig");Source: lib/sys/src/kvm/state.zig
zig
const abi = @import("abi.zig");pub const Parts = struct { registers: bool = true, special_registers: bool = true, fpu: bool = false, events: bool = false, debug_registers: bool = false, xsave: bool = false, xcrs: bool = false, multiprocessor: bool = false, pub const basic: Parts = .{}; pub const all: Parts = .{ .fpu = true, .events = true, .debug_registers = true, .xsave = true, .xcrs = true, .multiprocessor = true, };};pub const Fixed = struct { valid: Parts, registers: abi.Registers, special_registers: abi.SpecialRegisters, fpu: abi.Fpu, events: abi.VcpuEvents, debug_registers: abi.DebugRegisters, xsave: abi.Xsave, xcrs: abi.Xcrs, multiprocessor: abi.MpState,};Audit
| Definitions | 5 |
|---|---|
| Public names | 5 |
| Members | 17 |
| Version | 26.7.0 |
| Revision | daab053ee433 |