summary refs log tree commit diff
path: root/hypervisor/src/types/x86.rs
blob: cd5236a8182224d1f33b984614fbbd7659d0f5ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

use kvm_sys::kvm_cpuid_entry2;

pub type CpuIdEntry = kvm_cpuid_entry2;
pub struct CpuId {
    _cpu_id_entries: Vec<CpuIdEntry>,
}