Changeset 48484 in vbox
- Timestamp:
- Sep 16, 2013 8:05:04 AM (11 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/VBoxRTImp.def
r46490 r48484 889 889 RTRandU64 890 890 RTRandU64Ex 891 RTReqAlloc 892 RTReqCall 893 RTReqCallEx 894 RTReqCallV 895 RTReqCallVoid 896 RTReqCreateQueue 897 RTReqDestroyQueue 898 RTReqFree 899 RTReqIsBusy 900 RTReqProcess 901 RTReqQueue 891 RTReqQueueAlloc 892 RTReqQueueCall 893 RTReqQueueCallEx 894 RTReqQueueCallV 895 RTReqQueueCallVoid 896 RTReqQueueCreate 897 RTReqQueueDestroy 898 RTReqQueueIsBusy 899 RTReqQueueProcess 900 RTReqGetStatus 901 RTReqRelease 902 RTReqRetain 903 RTReqSubmit 902 904 RTReqWait 903 905 RTS3BucketsDestroy -
trunk/src/VBox/Runtime/common/misc/req.cpp
r39550 r48484 229 229 RTDECL(int) RTReqSubmit(PRTREQ hReq, RTMSINTERVAL cMillies) 230 230 { 231 LogFlow(("RTReq Queue: hReq=%p cMillies=%d\n", hReq, cMillies));231 LogFlow(("RTReqSubmit: hReq=%p cMillies=%d\n", hReq, cMillies)); 232 232 233 233 /* … … 268 268 rc = RTReqWait(pReq, cMillies); 269 269 270 LogFlow(("RTReq Queue: returns %Rrc\n", rc));270 LogFlow(("RTReqSubmit: returns %Rrc\n", rc)); 271 271 return rc; 272 272 } -
trunk/src/VBox/Runtime/common/misc/reqqueue.cpp
r39550 r48484 99 99 RTDECL(int) RTReqQueueProcess(RTREQQUEUE hQueue, RTMSINTERVAL cMillies) 100 100 { 101 LogFlow(("RTReq Process %x\n", hQueue));101 LogFlow(("RTReqQueueProcess %x\n", hQueue)); 102 102 103 103 /* … … 138 138 PRTREQ pReq = pReqs; 139 139 if (pReq->pNext) 140 Log2(("RTReq Process: 2+ requests: %p %p %p\n", pReq, pReq->pNext, pReq->pNext->pNext));140 Log2(("RTReqQueueProcess: 2+ requests: %p %p %p\n", pReq, pReq->pNext, pReq->pNext->pNext)); 141 141 pReqs = NULL; 142 142 while (pReq) … … 169 169 } 170 170 171 LogFlow(("RTReq Process: returns %Rrc\n", rc));171 LogFlow(("RTReqQueueProcess: returns %Rrc\n", rc)); 172 172 return rc; 173 173 } … … 210 210 RTDECL(int) RTReqQueueCallV(RTREQQUEUE hQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args) 211 211 { 212 LogFlow(("RTReq CallV: cMillies=%d fFlags=%#x pfnFunction=%p cArgs=%d\n", cMillies, fFlags, pfnFunction, cArgs));212 LogFlow(("RTReqQueueCallV: cMillies=%d fFlags=%#x pfnFunction=%p cArgs=%d\n", cMillies, fFlags, pfnFunction, cArgs)); 213 213 214 214 /* … … 259 259 { 260 260 *ppReq = pReq; 261 LogFlow(("RTReq CallV: returns %Rrc *ppReq=%p\n", rc, pReq));261 LogFlow(("RTReqQueueCallV: returns %Rrc *ppReq=%p\n", rc, pReq)); 262 262 } 263 263 else 264 LogFlow(("RTReq CallV: returns %Rrc\n", rc));264 LogFlow(("RTReqQueueCallV: returns %Rrc\n", rc)); 265 265 Assert(rc != VERR_INTERRUPTED); 266 266 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.