Changeset 54581 in vbox for trunk/src/VBox
- Timestamp:
- Mar 2, 2015 2:56:02 PM (10 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrvGip.cpp
r54579 r54581 876 876 ASMAtomicWriteBool(&pDevExt->fInvTscRefinePowerEvent, true); 877 877 if ( RT_LIKELY(pGip) 878 && pGip->enmUseTscDelta > SUPGIPUSETSCDELTA_ZERO_CLAIMED) 878 && pGip->enmUseTscDelta > SUPGIPUSETSCDELTA_ZERO_CLAIMED 879 && !supdrvOSAreCpusOfflinedOnSuspend()) 879 880 { 880 881 #ifdef SUPDRV_USE_TSC_DELTA_THREAD -
trunk/src/VBox/HostDrivers/Support/SUPDrvInternal.h
r54578 r54581 805 805 bool VBOXCALL supdrvOSObjCanAccess(PSUPDRVOBJ pObj, PSUPDRVSESSION pSession, const char *pszObjName, int *prc); 806 806 bool VBOXCALL supdrvOSGetForcedAsyncTscMode(PSUPDRVDEVEXT pDevExt); 807 bool VBOXCALL supdrvOSAreCpusOfflinedOnSuspend(void); 807 808 bool VBOXCALL supdrvOSAreTscDeltasInSync(void); 808 809 int VBOXCALL supdrvOSEnableVTx(bool fEnabled); -
trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
r53396 r54581 954 954 955 955 956 bool VBOXCALL supdrvOSAreCpusOfflinedOnSuspend(void) 957 { 958 /** @todo verify this. */ 959 return false; 960 } 961 962 956 963 bool VBOXCALL supdrvOSAreTscDeltasInSync(void) 957 964 { -
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r53396 r54581 540 540 541 541 542 bool VBOXCALL supdrvOSAreCpusOfflinedOnSuspend(void) 543 { 544 /** @todo verify this. */ 545 return false; 546 } 547 548 542 549 bool VBOXCALL supdrvOSAreTscDeltasInSync(void) 543 550 { -
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r54144 r54581 879 879 880 880 881 bool VBOXCALL supdrvOSAreCpusOfflinedOnSuspend(void) 882 { 883 return true; 884 } 885 886 881 887 bool VBOXCALL supdrvOSAreTscDeltasInSync(void) 882 888 { -
trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp
r53396 r54581 407 407 408 408 409 bool VBOXCALL supdrvOSAreCpusOfflinedOnSuspend(void) 410 { 411 return false; 412 } 413 414 409 415 bool VBOXCALL supdrvOSAreTscDeltasInSync(void) 410 416 { -
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r53396 r54581 965 965 966 966 967 bool VBOXCALL supdrvOSAreCpusOfflinedOnSuspend(void) 968 { 969 /** @todo verify this. */ 970 return false; 971 } 972 973 967 974 bool VBOXCALL supdrvOSAreTscDeltasInSync(void) 968 975 { -
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r54502 r54581 1656 1656 1657 1657 /** 1658 * Whether the host takes CPUs offline during a suspend/resume operation. 1659 */ 1660 bool VBOXCALL supdrvOSAreCpusOfflinedOnSuspend(void) 1661 { 1662 return false; 1663 } 1664 1665 1666 /** 1658 1667 * Whether the hardware TSC has been synchronized by the OS. 1659 1668 */
Note:
See TracChangeset
for help on using the changeset viewer.