Changeset 57078 in vbox for trunk/include
- Timestamp:
- Jul 24, 2015 8:16:59 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101800
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r57071 r57078 35 35 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 36 36 # include <iprt/asm-amd64-x86.h> 37 # include <iprt/x86.h>38 37 #endif 39 38 … … 556 555 * Worker for SUPIsTscFreqCompatible(). 557 556 * 557 * @returns true if it's compatible, false otherwise. 558 558 * @param uBaseCpuHz The reference CPU frequency of the system. 559 559 * @param uCpuHz The CPU frequency to compare with the base. … … 561 561 * for when running in a virtualized environment). 562 562 * 563 * @returns true if it's compatible, false otherwise.564 563 * @remarks Don't use directly, use SUPIsTscFreqCompatible() instead. This is 565 564 * to be used by tstGIP-2 or the like. 565 * 566 * @todo r=bird: There is no need to inline this, is there? Move to 567 * SUPLibAll.cpp 566 568 */ 567 569 DECLINLINE(bool) SUPIsTscFreqCompatibleEx(uint64_t uBaseCpuHz, uint64_t uCpuHz, bool fRelax) … … 586 588 * frequency of the host. 587 589 * 590 * @returns true if it's compatible, false otherwise. 588 591 * @param uCpuHz The TSC frequency to check. 589 592 * @param puGipCpuHz Where to store the GIP TSC frequency used 590 * during the compatibility test (can be NULL).593 * during the compatibility test - optional. 591 594 * @param fRelax Whether to use a more relaxed threshold (like 592 595 * for when running in a virtualized environment). 593 596 * 594 * @returns true if it's compatible, false otherwise. 597 * @todo r=bird: There is no need to inline this, is there? Move to 598 * SUPLibAll.cpp 595 599 */ 596 600 DECLINLINE(bool) SUPIsTscFreqCompatible(uint64_t uCpuHz, uint64_t *puGipCpuHz, bool fRelax) … … 613 617 /** @internal */ 614 618 SUPDECL(uint64_t) SUPReadTscWithDelta(PSUPGLOBALINFOPAGE pGip); 615 616 /**617 * Checks if we are may be running in a virtualized environment.618 *619 * @returns true if the host system may be virtualized, false otherwise.620 */621 DECLINLINE(bool) SUPIsHostVirtualized(void)622 {623 Assert(ASMHasCpuId());624 return RT_BOOL(ASMCpuId_ECX(1) & X86_CPUID_FEATURE_ECX_HVP);625 }626 619 627 620 /** -
trunk/include/iprt/system.h
r56291 r57078 243 243 RTDECL(int) RTSystemShutdown(RTMSINTERVAL cMsDelay, uint32_t fFlags, const char *pszLogMsg); 244 244 245 /** 246 * Checks if we're executing inside a virtual machine (VM). 247 * 248 * The current implemention is very simplistic and won't try to detect the 249 * precense of a virtual machien monitor (VMM) unless it openly tells us it is 250 * there. 251 * 252 * @returns true if inside a VM, false if on real hardware. 253 * 254 * @todo If more information is needed, like which VMM it is and which 255 * version and stuch, add one or two new APIs. 256 */ 257 RTDECL(bool) RTSystemIsInsideVM(void); 258 245 259 /** @} */ 246 260
Note:
See TracChangeset
for help on using the changeset viewer.