Changeset 54697 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Mar 9, 2015 1:33:22 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98854
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/TM.cpp
r54672 r54697 3200 3200 3201 3201 3202 #if 0 3203 /** 3204 * Check whether the host TSC is fixed rate & monotonic. 3202 /** 3203 * Check whether the guest can be presented a fixed rate & monotonic TSC. 3205 3204 * 3206 3205 * @returns true if TSC is stable, false otherwise. … … 3213 3212 VMMR3_INT_DECL(bool) TMR3CpuTickIsFixedRateMonotonic(PVM pVM, bool fWithParavirtEnabled) 3214 3213 { 3215 /** @todo */ 3216 } 3217 #endif 3214 /** @todo figure out what exactly we want here later. */ 3215 NOREF(fWithParavirtEnabled); 3216 return ( tmR3HasFixedTSC(pVM) /* Host has fixed-rate TSC. */ 3217 && g_pSUPGlobalInfoPage->u32Mode != SUPGIPMODE_ASYNC_TSC); /* GIP thinks it's monotonic. */ 3218 } 3218 3219 3219 3220
Note:
See TracChangeset
for help on using the changeset viewer.