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