Changeset 74798 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 12, 2018 12:25:41 PM (6 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/EMR3Nem.cpp
r74795 r74798 309 309 if (VMCPU_FF_IS_ANY_SET(pVCpu, VMCPU_FF_PGM_SYNC_CR3 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL)) 310 310 { 311 Log(("NEM: TODO: Make VMCPU_FF_PGM_SYNC_CR3 / VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL quiet! (%# x)\n",pVCpu->fLocalForcedActions));311 Log(("NEM: TODO: Make VMCPU_FF_PGM_SYNC_CR3 / VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL quiet! (%#RX64)\n", (uint64_t)pVCpu->fLocalForcedActions)); 312 312 VMCPU_FF_CLEAR_MASK(pVCpu, VMCPU_FF_PGM_SYNC_CR3 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL); 313 313 } -
trunk/src/VBox/VMM/VMMR3/VMEmt.cpp
r74791 r74798 1112 1112 || VMCPU_FF_IS_ANY_SET(pVCpu, fMask)) 1113 1113 { 1114 LogFlow(("VMR3WaitHalted: returns VINF_SUCCESS (FF %#x FFCPU %# x)\n", pVM->fGlobalForcedActions,pVCpu->fLocalForcedActions));1114 LogFlow(("VMR3WaitHalted: returns VINF_SUCCESS (FF %#x FFCPU %#RX64)\n", pVM->fGlobalForcedActions, (uint64_t)pVCpu->fLocalForcedActions)); 1115 1115 return VINF_SUCCESS; 1116 1116 } -
trunk/src/VBox/VMM/VMMR3/VMM.cpp
r74790 r74798 3103 3103 for (VMCPUID i = 0; i < pVM->cCpus; i++) 3104 3104 { 3105 const uint 32_t fLocalForcedActions = pVM->aCpus[i].fLocalForcedActions;3106 pHlp->pfnPrintf(pHlp, "CPU %u FFs: %#RX 32", i, fLocalForcedActions);3105 const uint64_t fLocalForcedActions = pVM->aCpus[i].fLocalForcedActions; 3106 pHlp->pfnPrintf(pHlp, "CPU %u FFs: %#RX64", i, fLocalForcedActions); 3107 3107 3108 3108 /* show the flag mnemonics */ … … 3139 3139 #endif 3140 3140 if (f) 3141 pHlp->pfnPrintf(pHlp, "%s\n Unknown bits: %#RX 32\n", c ? "," : "", f);3141 pHlp->pfnPrintf(pHlp, "%s\n Unknown bits: %#RX64\n", c ? "," : "", f); 3142 3142 else 3143 3143 pHlp->pfnPrintf(pHlp, "\n");
Note:
See TracChangeset
for help on using the changeset viewer.