summary refs log tree commit diff
path: root/hypervisor/src/caps.rs
blob: c3fe745e0c05732d3f701e7f9c580da614883755 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// 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.

/// An enumeration of different hypervisor capabilities.
pub enum HypervisorCap {
    ArmPmuV3,
    ImmediateExit,
    S390UserSigp,
    TscDeadlineTimer,
    UserMemory,
}