1 2 3 4 5 6 7 8 9
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. //! Hypervisor reference time. /// Returns the current reference time from the hypervisor, in 100ns units. pub fn reference_time() -> u64 { crate::arch::reference_time() }