VirtualBox

Changeset 61574 in vbox for trunk


Ignore:
Timestamp:
Jun 8, 2016 12:41:00 PM (9 years ago)
Author:
vboxsync
Message:

VMM/HM: Run the exithistory info callback on all EMTs if a specific one isn't specified.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR3/HM.cpp

    r61518 r61574  
    426426     */
    427427    rc = DBGFR3InfoRegisterInternalEx(pVM, "exithistory", "Dumps the HM VM-exit history.", hmR3InfoExitHistory,
    428                                       DBGFINFO_FLAGS_RUN_ON_EMT);
     428                                      DBGFINFO_FLAGS_ALL_EMTS);
    429429    AssertRCReturn(rc, rc);
    430430
     
    35153515static DECLCALLBACK(void) hmR3InfoExitHistory(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
    35163516{
     3517    NOREF(pszArgs);
    35173518    PVMCPU pVCpu = VMMGetCpu(pVM);
    3518     Assert(pVCpu);
     3519    if (!pVCpu)
     3520        pVCpu = &pVM->aCpus[0];
    35193521
    35203522    if (HMIsEnabled(pVM))
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette