Changeset 72753 in vbox for trunk/src/VBox
- Timestamp:
- Jun 29, 2018 8:24:43 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMR0.cpp
r72750 r72753 1595 1595 * @param pCtx Pointer to the guest CPU context. 1596 1596 */ 1597 VMMR0_INT_DECL(int) 1597 VMMR0_INT_DECL(int) HMR0SaveFPUState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx) 1598 1598 { 1599 1599 STAM_COUNTER_INC(&pVCpu->hm.s.StatFpu64SwitchBack); … … 1612 1612 * @param pCtx Pointer to the guest CPU context. 1613 1613 */ 1614 VMMR0_INT_DECL(int) 1614 VMMR0_INT_DECL(int) HMR0SaveDebugState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx) 1615 1615 { 1616 1616 STAM_COUNTER_INC(&pVCpu->hm.s.StatDebug64SwitchBack); … … 1627 1627 * @param pVM The cross context VM structure. 1628 1628 */ 1629 VMMR0_INT_DECL(int) 1629 VMMR0_INT_DECL(int) HMR0TestSwitcher3264(PVM pVM) 1630 1630 { 1631 1631 PVMCPU pVCpu = &pVM->aCpus[0]; 1632 PCPUMCTX pCtx = CPUMQueryGuestCtxPtr(pVCpu); 1633 uint32_t aParam[5] = {0, 1, 2, 3, 4}; 1632 uint32_t aParam[5] = { 0, 1, 2, 3, 4 }; 1634 1633 int rc; 1635 1634
Note:
See TracChangeset
for help on using the changeset viewer.