VirtualBox

Changeset 13755 in vbox for trunk/src/VBox/VMM/DBGFInfo.cpp


Ignore:
Timestamp:
Nov 3, 2008 3:49:06 PM (16 years ago)
Author:
vboxsync
Message:

Started with VM request API changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/DBGFInfo.cpp

    r12989 r13755  
    717717            case DBGFINFOTYPE_DEV:
    718718                if (Info.fFlags & DBGFINFO_FLAGS_RUN_ON_EMT)
    719                     rc = VMR3ReqCallVoid(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Dev.pfnHandler, 3, Info.u.Dev.pDevIns, pHlp, pszArgs);
     719                    rc = VMR3ReqCallVoid(pVM, VMREQDEST_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Dev.pfnHandler, 3, Info.u.Dev.pDevIns, pHlp, pszArgs);
    720720                else
    721721                    Info.u.Dev.pfnHandler(Info.u.Dev.pDevIns, pHlp, pszArgs);
     
    724724            case DBGFINFOTYPE_DRV:
    725725                if (Info.fFlags & DBGFINFO_FLAGS_RUN_ON_EMT)
    726                     rc = VMR3ReqCallVoid(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Drv.pfnHandler, 3, Info.u.Drv.pDrvIns, pHlp, pszArgs);
     726                    rc = VMR3ReqCallVoid(pVM, VMREQDEST_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Drv.pfnHandler, 3, Info.u.Drv.pDrvIns, pHlp, pszArgs);
    727727                else
    728728                    Info.u.Drv.pfnHandler(Info.u.Drv.pDrvIns, pHlp, pszArgs);
     
    731731            case DBGFINFOTYPE_INT:
    732732                if (Info.fFlags & DBGFINFO_FLAGS_RUN_ON_EMT)
    733                     rc = VMR3ReqCallVoid(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Int.pfnHandler, 3, pVM, pHlp, pszArgs);
     733                    rc = VMR3ReqCallVoid(pVM, VMREQDEST_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Int.pfnHandler, 3, pVM, pHlp, pszArgs);
    734734                else
    735735                    Info.u.Int.pfnHandler(pVM, pHlp, pszArgs);
     
    738738            case DBGFINFOTYPE_EXT:
    739739                if (Info.fFlags & DBGFINFO_FLAGS_RUN_ON_EMT)
    740                     rc = VMR3ReqCallVoid(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Ext.pfnHandler, 3, Info.u.Ext.pvUser, pHlp, pszArgs);
     740                    rc = VMR3ReqCallVoid(pVM, VMREQDEST_ALL, &pReq, RT_INDEFINITE_WAIT, (PFNRT)Info.u.Ext.pfnHandler, 3, Info.u.Ext.pvUser, pHlp, pszArgs);
    741741                else
    742742                    Info.u.Ext.pfnHandler(Info.u.Ext.pvUser, pHlp, pszArgs);
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