We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bb3d19 commit 29eb073Copy full SHA for 29eb073
src/vmm/src/devices/pseudo/boot_timer.rs
@@ -36,6 +36,7 @@ impl BootTimer {
36
}
37
38
impl BootTimer {
39
+ /// Create a device at a certain point in time.
40
pub fn new(start_ts: TimestampUs) -> BootTimer {
41
BootTimer { start_ts }
42
src/vmm/src/devices/pseudo/mod.rs
@@ -1,6 +1,7 @@
1
// Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
// SPDX-License-Identifier: Apache-2.0
3
4
+//! Implements Firecracker specific devices (e.g. signal when boot is completed).
5
mod boot_timer;
6
7
pub use self::boot_timer::BootTimer;
0 commit comments