Changeset 25728 in vbox for trunk/include/VBox
- Timestamp:
- Jan 11, 2010 3:12:52 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56472
- Location:
- trunk/include/VBox
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD.h
r25647 r25728 977 977 * Use RT_INDEFINITE_WAIT to wait for ever. 978 978 */ 979 DECLR3CALLBACKMEMBER(int, pfnSelectOne, (RTSOCKET Sock, unsignedcMillies));979 DECLR3CALLBACKMEMBER(int, pfnSelectOne, (RTSOCKET Sock, RTMSINTERVAL cMillies)); 980 980 981 981 /** -
trunk/include/VBox/dbgf.h
r24061 r25728 294 294 VMMR3DECL(int) DBGFR3Attach(PVM pVM); 295 295 VMMR3DECL(int) DBGFR3Detach(PVM pVM); 296 VMMR3DECL(int) DBGFR3EventWait(PVM pVM, unsignedcMillies, PCDBGFEVENT *ppEvent);296 VMMR3DECL(int) DBGFR3EventWait(PVM pVM, RTMSINTERVAL cMillies, PCDBGFEVENT *ppEvent); 297 297 VMMR3DECL(int) DBGFR3Halt(PVM pVM); 298 298 VMMR3DECL(bool) DBGFR3IsHalted(PVM pVM); -
trunk/include/VBox/pdmifs.h
r25052 r25728 2104 2104 * @param cMillies Number of milliseconds to wait. 0 means return immediately. 2105 2105 */ 2106 DECLR3CALLBACKMEMBER(int, pfnWaitReceiveAvail,(PPDMINETWORKPORT pInterface, unsignedcMillies));2106 DECLR3CALLBACKMEMBER(int, pfnWaitReceiveAvail,(PPDMINETWORKPORT pInterface, RTMSINTERVAL cMillies)); 2107 2107 2108 2108 /** -
trunk/include/VBox/pdmthread.h
r21217 r25728 291 291 VMMR3DECL(int) PDMR3ThreadIAmSuspending(PPDMTHREAD pThread); 292 292 VMMR3DECL(int) PDMR3ThreadIAmRunning(PPDMTHREAD pThread); 293 VMMR3DECL(int) PDMR3ThreadSleep(PPDMTHREAD pThread, unsignedcMillies);293 VMMR3DECL(int) PDMR3ThreadSleep(PPDMTHREAD pThread, RTMSINTERVAL cMillies); 294 294 VMMR3DECL(int) PDMR3ThreadSuspend(PPDMTHREAD pThread); 295 295 VMMR3DECL(int) PDMR3ThreadResume(PPDMTHREAD pThread); -
trunk/include/VBox/pdmusb.h
r24744 r25728 356 356 * @remarks Mandatory. 357 357 */ 358 DECLR3CALLBACKMEMBER(PVUSBURB, pfnUrbReap,(PPDMUSBINS pUsbIns, unsignedcMillies));358 DECLR3CALLBACKMEMBER(PVUSBURB, pfnUrbReap,(PPDMUSBINS pUsbIns, RTMSINTERVAL cMillies)); 359 359 360 360 -
trunk/include/VBox/vmapi.h
r24922 r25728 371 371 VMMR3DECL(int) VMR3SetRuntimeErrorWorker(PVM pVM); 372 372 VMMR3DECL(uint32_t) VMR3GetRuntimeErrorCount(PVM pVM); 373 VMMR3DECL(int) VMR3ReqCall(PVM pVM, VMCPUID idDstCpu, PVMREQ *ppReq, unsignedcMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, ...);374 VMMR3DECL(int) VMR3ReqCallU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, unsigned cMillies, unsignedfFlags, PFNRT pfnFunction, unsigned cArgs, ...);375 VMMR3DECL(int) VMR3ReqCallVU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, unsigned cMillies, unsignedfFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args);373 VMMR3DECL(int) VMR3ReqCall(PVM pVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, ...); 374 VMMR3DECL(int) VMR3ReqCallU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, ...); 375 VMMR3DECL(int) VMR3ReqCallVU(PUVM pUVM, VMCPUID idDstCpu, PVMREQ *ppReq, RTMSINTERVAL cMillies, uint32_t fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args); 376 376 VMMR3DECL(int) VMR3ReqCallWait(PVM pVM, VMCPUID idDstCpu, PFNRT pfnFunction, unsigned cArgs, ...); 377 377 VMMR3DECL(int) VMR3ReqCallWaitU(PUVM pUVM, VMCPUID idDstCpu, PFNRT pfnFunction, unsigned cArgs, ...); … … 385 385 VMMR3DECL(int) VMR3ReqAllocU(PUVM pUVM, PVMREQ *ppReq, VMREQTYPE enmType, VMCPUID idDstCpu); 386 386 VMMR3DECL(int) VMR3ReqFree(PVMREQ pReq); 387 VMMR3DECL(int) VMR3ReqQueue(PVMREQ pReq, unsignedcMillies);388 VMMR3DECL(int) VMR3ReqWait(PVMREQ pReq, unsignedcMillies);387 VMMR3DECL(int) VMR3ReqQueue(PVMREQ pReq, RTMSINTERVAL cMillies); 388 VMMR3DECL(int) VMR3ReqWait(PVMREQ pReq, RTMSINTERVAL cMillies); 389 389 VMMR3DECL(int) VMR3ReqProcessU(PUVM pUVM, VMCPUID idDstCpu); 390 390 VMMR3DECL(void) VMR3NotifyGlobalFFU(PUVM pUVM, uint32_t fFlags); -
trunk/include/VBox/vusb.h
r21217 r25728 479 479 * @param cMillies Number of milliseconds to poll for completion. 480 480 */ 481 DECLR3CALLBACKMEMBER(void, pfnReapAsyncUrbs,(PVUSBIROOTHUBCONNECTOR pInterface, unsignedcMillies));481 DECLR3CALLBACKMEMBER(void, pfnReapAsyncUrbs,(PVUSBIROOTHUBCONNECTOR pInterface, RTMSINTERVAL cMillies)); 482 482 483 483 /** … … 526 526 527 527 /** @copydoc VUSBIROOTHUBCONNECTOR::pfnReapAsyncUrbs */ 528 DECLINLINE(void) VUSBIRhReapAsyncUrbs(PVUSBIROOTHUBCONNECTOR pInterface, unsignedcMillies)528 DECLINLINE(void) VUSBIRhReapAsyncUrbs(PVUSBIROOTHUBCONNECTOR pInterface, RTMSINTERVAL cMillies) 529 529 { 530 530 pInterface->pfnReapAsyncUrbs(pInterface, cMillies);
Note:
See TracChangeset
for help on using the changeset viewer.