Changeset 25724 in vbox for trunk/src/VBox/Runtime/common/misc/req.cpp
- Timestamp:
- Jan 11, 2010 2:45:34 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/req.cpp
r24468 r25724 109 109 * Use RT_INDEFINITE_WAIT to only wait till one is added. 110 110 */ 111 RTDECL(int) RTReqProcess(PRTREQQUEUE pQueue, unsignedcMillies)111 RTDECL(int) RTReqProcess(PRTREQQUEUE pQueue, RTMSINTERVAL cMillies) 112 112 { 113 113 LogFlow(("RTReqProcess %x\n", pQueue)); … … 211 211 * @remarks See remarks on RTReqCallV. 212 212 */ 213 RTDECL(int) RTReqCall(PRTREQQUEUE pQueue, PRTREQ *ppReq, unsignedcMillies, PFNRT pfnFunction, unsigned cArgs, ...)213 RTDECL(int) RTReqCall(PRTREQQUEUE pQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, PFNRT pfnFunction, unsigned cArgs, ...) 214 214 { 215 215 va_list va; … … 246 246 * @remarks See remarks on RTReqCallV. 247 247 */ 248 RTDECL(int) RTReqCallVoid(PRTREQQUEUE pQueue, PRTREQ *ppReq, unsignedcMillies, PFNRT pfnFunction, unsigned cArgs, ...)248 RTDECL(int) RTReqCallVoid(PRTREQQUEUE pQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, PFNRT pfnFunction, unsigned cArgs, ...) 249 249 { 250 250 va_list va; … … 283 283 * @remarks See remarks on RTReqCallV. 284 284 */ 285 RTDECL(int) RTReqCallEx(PRTREQQUEUE pQueue, PRTREQ *ppReq, unsignedcMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, ...)285 RTDECL(int) RTReqCallEx(PRTREQQUEUE pQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, ...) 286 286 { 287 287 va_list va; … … 327 327 * Use (void *)NULL or (uintptr_t)0 instead of NULL. 328 328 */ 329 RTDECL(int) RTReqCallV(PRTREQQUEUE pQueue, PRTREQ *ppReq, unsignedcMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args)329 RTDECL(int) RTReqCallV(PRTREQQUEUE pQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args) 330 330 { 331 331 LogFlow(("RTReqCallV: cMillies=%d fFlags=%#x pfnFunction=%p cArgs=%d\n", cMillies, fFlags, pfnFunction, cArgs)); … … 656 656 * wait till it's completed. 657 657 */ 658 RTDECL(int) RTReqQueue(PRTREQ pReq, unsignedcMillies)658 RTDECL(int) RTReqQueue(PRTREQ pReq, RTMSINTERVAL cMillies) 659 659 { 660 660 LogFlow(("RTReqQueue: pReq=%p cMillies=%d\n", pReq, cMillies)); … … 724 724 * Use RT_INDEFINITE_WAIT to only wait till it's completed. 725 725 */ 726 RTDECL(int) RTReqWait(PRTREQ pReq, unsignedcMillies)726 RTDECL(int) RTReqWait(PRTREQ pReq, RTMSINTERVAL cMillies) 727 727 { 728 728 LogFlow(("RTReqWait: pReq=%p cMillies=%d\n", pReq, cMillies));
Note:
See TracChangeset
for help on using the changeset viewer.