- Timestamp:
- Jun 8, 2016 12:41:00 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/HM.cpp
r61518 r61574 426 426 */ 427 427 rc = DBGFR3InfoRegisterInternalEx(pVM, "exithistory", "Dumps the HM VM-exit history.", hmR3InfoExitHistory, 428 DBGFINFO_FLAGS_ RUN_ON_EMT);428 DBGFINFO_FLAGS_ALL_EMTS); 429 429 AssertRCReturn(rc, rc); 430 430 … … 3515 3515 static DECLCALLBACK(void) hmR3InfoExitHistory(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs) 3516 3516 { 3517 NOREF(pszArgs); 3517 3518 PVMCPU pVCpu = VMMGetCpu(pVM); 3518 Assert(pVCpu); 3519 if (!pVCpu) 3520 pVCpu = &pVM->aCpus[0]; 3519 3521 3520 3522 if (HMIsEnabled(pVM))
Note:
See TracChangeset
for help on using the changeset viewer.