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

extern crate sys_util;

mod address_allocator;
mod system_allocator;

pub use address_allocator::AddressAllocator;
pub use system_allocator::{AddressRanges, SystemAllocator};