chipset_arc_mutex_device/lib.rs
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4//! VMM-agnostic infrastructure to wire up
5//! [`ChipsetDevice`](chipset_device::ChipsetDevice) instances using
6//! `Arc<CloseableMutex<dyn ChipsetDevice>>` to communicate with the backing chipset.
7//!
8//! NOTE: this crate is no longer used by OpenVMM/OpenHCL, and only remains
9//! in-tree to support testing devices.
10
11#![forbid(unsafe_code)]
12
13pub mod device;
14pub mod services;
15
16pub mod test_chipset;