VirtualBox

Changeset 25728 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jan 11, 2010 3:12:52 PM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
56472
Message:

*: Use RTMSINTERVAL for timeouts.

Location:
trunk/include/VBox
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/VBoxHDD.h

    r25647 r25728  
    977977     *                      Use RT_INDEFINITE_WAIT to wait for ever.
    978978     */
    979     DECLR3CALLBACKMEMBER(int, pfnSelectOne, (RTSOCKET Sock, unsigned cMillies));
     979    DECLR3CALLBACKMEMBER(int, pfnSelectOne, (RTSOCKET Sock, RTMSINTERVAL cMillies));
    980980
    981981    /**
  • trunk/include/VBox/dbgf.h

    r24061 r25728  
    294294VMMR3DECL(int)  DBGFR3Attach(PVM pVM);
    295295VMMR3DECL(int)  DBGFR3Detach(PVM pVM);
    296 VMMR3DECL(int)  DBGFR3EventWait(PVM pVM, unsigned cMillies, PCDBGFEVENT *ppEvent);
     296VMMR3DECL(int)  DBGFR3EventWait(PVM pVM, RTMSINTERVAL cMillies, PCDBGFEVENT *ppEvent);
    297297VMMR3DECL(int)  DBGFR3Halt(PVM pVM);
    298298VMMR3DECL(bool) DBGFR3IsHalted(PVM pVM);
  • trunk/include/VBox/pdmifs.h

    r25052 r25728  
    21042104     * @param   cMillies        Number of milliseconds to wait. 0 means return immediately.
    21052105     */
    2106     DECLR3CALLBACKMEMBER(int, pfnWaitReceiveAvail,(PPDMINETWORKPORT pInterface, unsigned cMillies));
     2106    DECLR3CALLBACKMEMBER(int, pfnWaitReceiveAvail,(PPDMINETWORKPORT pInterface, RTMSINTERVAL cMillies));
    21072107
    21082108    /**
  • trunk/include/VBox/pdmthread.h

    r21217 r25728  
    291291VMMR3DECL(int) PDMR3ThreadIAmSuspending(PPDMTHREAD pThread);
    292292VMMR3DECL(int) PDMR3ThreadIAmRunning(PPDMTHREAD pThread);
    293 VMMR3DECL(int) PDMR3ThreadSleep(PPDMTHREAD pThread, unsigned cMillies);
     293VMMR3DECL(int) PDMR3ThreadSleep(PPDMTHREAD pThread, RTMSINTERVAL cMillies);
    294294VMMR3DECL(int) PDMR3ThreadSuspend(PPDMTHREAD pThread);
    295295VMMR3DECL(int) PDMR3ThreadResume(PPDMTHREAD pThread);
  • trunk/include/VBox/pdmusb.h

    r24744 r25728  
    356356     * @remarks Mandatory.
    357357     */
    358     DECLR3CALLBACKMEMBER(PVUSBURB, pfnUrbReap,(PPDMUSBINS pUsbIns, unsigned cMillies));
     358    DECLR3CALLBACKMEMBER(PVUSBURB, pfnUrbReap,(PPDMUSBINS pUsbIns, RTMSINTERVAL cMillies));
    359359
    360360
  • trunk/include/VBox/vmapi.h

    r24922 r25728  
    371371VMMR3DECL(int)      VMR3SetRuntimeErrorWorker(PVM pVM);
    372372VMMR3DECL(uint32_t) VMR3GetRuntimeErrorCount(PVM pVM);
    373 VMMR3DECL(int)      VMR3ReqCall(PVM pVM, VMCPUID idDstCpu, PVMREQ *ppReq, unsigned cMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, ...);
    374 VMMR3DECL(int)      VMR3ReqCallU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, unsigned cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, ...);
    375 VMMR3DECL(int)      VMR3ReqCallVU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, unsigned cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args);
     373VMMR3DECL(int)      VMR3ReqCall(PVM pVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, ...);
     374VMMR3DECL(int)      VMR3ReqCallU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, ...);
     375VMMR3DECL(int)      VMR3ReqCallVU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args);
    376376VMMR3DECL(int)      VMR3ReqCallWait(PVM pVM, VMCPUID idDstCpu, PFNRT pfnFunction, unsigned cArgs, ...);
    377377VMMR3DECL(int)      VMR3ReqCallWaitU(PUVM pUVM, VMCPUID idDstCpu, PFNRT pfnFunction, unsigned cArgs, ...);
     
    385385VMMR3DECL(int)      VMR3ReqAllocU(PUVM pUVM, PVMREQ *ppReq, VMREQTYPE enmType, VMCPUID idDstCpu);
    386386VMMR3DECL(int)      VMR3ReqFree(PVMREQ pReq);
    387 VMMR3DECL(int)      VMR3ReqQueue(PVMREQ pReq, unsigned cMillies);
    388 VMMR3DECL(int)      VMR3ReqWait(PVMREQ pReq, unsigned cMillies);
     387VMMR3DECL(int)      VMR3ReqQueue(PVMREQ pReq, RTMSINTERVAL cMillies);
     388VMMR3DECL(int)      VMR3ReqWait(PVMREQ pReq, RTMSINTERVAL cMillies);
    389389VMMR3DECL(int)      VMR3ReqProcessU(PUVM pUVM, VMCPUID idDstCpu);
    390390VMMR3DECL(void)     VMR3NotifyGlobalFFU(PUVM pUVM, uint32_t fFlags);
  • trunk/include/VBox/vusb.h

    r21217 r25728  
    479479     * @param   cMillies    Number of milliseconds to poll for completion.
    480480     */
    481     DECLR3CALLBACKMEMBER(void, pfnReapAsyncUrbs,(PVUSBIROOTHUBCONNECTOR pInterface, unsigned cMillies));
     481    DECLR3CALLBACKMEMBER(void, pfnReapAsyncUrbs,(PVUSBIROOTHUBCONNECTOR pInterface, RTMSINTERVAL cMillies));
    482482
    483483    /**
     
    526526
    527527/** @copydoc VUSBIROOTHUBCONNECTOR::pfnReapAsyncUrbs */
    528 DECLINLINE(void) VUSBIRhReapAsyncUrbs(PVUSBIROOTHUBCONNECTOR pInterface, unsigned cMillies)
     528DECLINLINE(void) VUSBIRhReapAsyncUrbs(PVUSBIROOTHUBCONNECTOR pInterface, RTMSINTERVAL cMillies)
    529529{
    530530    pInterface->pfnReapAsyncUrbs(pInterface, cMillies);
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