hyperv_ic_guest/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Implementation of Hyper-V guest ICs (Integration Components).
//!
//! These are simple devices used to receive simple requests from the host or
//! otherwise provide some degree of integration between the guest and host.
//!
//! Examples (not all are necessarily implemented yet):
//!
//! * shutdown IC for initiating a guest shutdown
//! * timesync IC for synchronizing time
//! * heartbeat IC for reporting guest health
//! * KVP IC for exchanging arbitrary key/value data between the host and guest

#![cfg(target_os = "linux")]
#![forbid(unsafe_code)]

pub mod shutdown;

pub use shutdown::ShutdownGuestIc;