]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Changes to common source files not applicable to open-vm-tools.
authorJohn Wolfe <jwolfe@vmware.com>
Fri, 4 Nov 2022 18:45:05 +0000 (11:45 -0700)
committerJohn Wolfe <jwolfe@vmware.com>
Fri, 4 Nov 2022 18:45:05 +0000 (11:45 -0700)
open-vm-tools/lib/include/hostinfo.h
open-vm-tools/lib/misc/hostinfoHV.c

index 77a6d9742491f8cff245ccc6690e260704f29207..05f2ef5ded12e5ccc8c6bce48fced7df59593a85 100644 (file)
@@ -163,7 +163,6 @@ Bool Hostinfo_Daemonize(const char *path,
 
 Bool Hostinfo_NestingSupported(void);
 Bool Hostinfo_VCPUInfoBackdoor(unsigned bit);
-Bool Hostinfo_SynchronizedVTSCs(void);
 Bool Hostinfo_TouchBackDoor(void);
 Bool Hostinfo_TouchVirtualPC(void);
 Bool Hostinfo_TouchXen(void);
index 7af7d169e68ace09e0a36f74424c4d8794cfb75b..77252b1814966a19f1e7082d4084201081db446c 100644 (file)
@@ -422,35 +422,6 @@ Hostinfo_HyperV(void)
 }
 
 
-/*
- *----------------------------------------------------------------------
- *
- *  Hostinfo_SynchronizedVTSCs --
- *
- *      Access the backdoor to determine if the VCPUs' TSCs are
- *      synchronized.
- *
- * Results:
- *      TRUE if the outer VM provides synchronized VTSCs.
- *     FALSE otherwise.
- *
- * Side effects:
- *     Exception if not in a VM, so don't do that!
- *
- *----------------------------------------------------------------------
- */
-
-Bool
-Hostinfo_SynchronizedVTSCs(void)
-{
-#if defined(__i386__) || defined(__x86_64__)
-   return Hostinfo_VCPUInfoBackdoor(BDOOR_CMD_VCPU_SYNC_VTSCS);
-#else
-   return FALSE;
-#endif
-}
-
-
 #if defined(_WIN32)
 
 #if defined(_WIN64)