[arch][x86] add missing pv.h file added a few commits back

This commit is contained in:
Travis Geiselbrecht
2025-04-10 21:35:40 -07:00
parent c054ee89c2
commit c80efdc4ce

View File

@@ -0,0 +1,19 @@
/*
* Copyright (c) 2025 Travis Geiselbrecht
*
* Use of this source code is governed by a MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT
*/
#pragma once
#include <sys/types.h>
#include <stdbool.h>
#if !X86_LEGACY
status_t pvclock_init(void);
uint64_t pvclock_get_tsc_freq(void);
bool pv_clock_is_stable(void);
#endif // !X86_LEGACY