mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 13:23:08 +00:00
10 lines
316 B
Rust
10 lines
316 B
Rust
|
// Copyright 2018 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.
|
||
|
|
||
|
//! Manages system resources that can be allocated to VMs and their devices.
|
||
|
|
||
|
mod address_allocator;
|
||
|
|
||
|
pub use address_allocator::AddressAllocator;
|