mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
496ceed1d0
Now all crates use edition = "2018" then the majority of the "extern crate" statements can be removed. Only those for importing macros need to remain. Signed-off-by: Rob Bradford <robert.bradford@intel.com>
22 lines
668 B
Rust
22 lines
668 B
Rust
// Copyright 2018 The Chromium OS Authors. All rights reserved.
|
|
// Copyright © 2019 Intel Corporation
|
|
//
|
|
// Portions Copyright 2017 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-BSD-3-Clause file.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0 AND BSD-3-Clause
|
|
#![deny(missing_docs)]
|
|
|
|
//! Manages system resources that can be allocated to VMs and their devices.
|
|
|
|
mod address;
|
|
mod gsi;
|
|
mod system;
|
|
|
|
pub use crate::address::AddressAllocator;
|
|
pub use crate::gsi::GsiAllocator;
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub use crate::gsi::GsiApic;
|
|
pub use crate::system::SystemAllocator;
|