VirtualBox

Changeset 23012 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
Sep 14, 2009 4:38:13 PM (15 years ago)
Author:
vboxsync
Message:

VMM,Devices,Main: VMR3ReqCall w/ RT_INDEFINITE_WAIT -> VMR3ReqCallWait.

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/PDMAllQueue.cpp

    r21367 r23012  
    192192
    193193#else /* IN_RING3: */
    194     PVMREQ pReq;
    195     VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)PDMR3QueueFlushWorker, 2, pVM, pQueue);
    196     VMR3ReqFree(pReq);
     194    VMR3ReqCallWait(pVM, VMCPUID_ANY, (PFNRT)PDMR3QueueFlushWorker, 2, pVM, pQueue);
    197195#endif
    198196}
  • trunk/src/VBox/VMM/VMMAll/VMAll.cpp

    r23011 r23012  
    8585    va_list va2;
    8686    va_copy(va2, args); /* Have to make a copy here or GCC will break. */
    87     PVMREQ pReq;
    88     VMR3ReqCall(pVM, VMCPUID_ANY, &pReq, RT_INDEFINITE_WAIT, (PFNRT)vmR3SetErrorUV, 7,   /* ASSUMES 3 source pos args! */
    89                 pVM->pUVM, rc, RT_SRC_POS_ARGS, pszFormat, &va2);
    90     VMR3ReqFree(pReq);
     87    VMR3ReqCallWait(pVM, VMCPUID_ANY, (PFNRT)vmR3SetErrorUV, 7,   /* ASSUMES 3 source pos args! */
     88                    pVM->pUVM, rc, RT_SRC_POS_ARGS, pszFormat, &va2);
    9189    va_end(va2);
    9290
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