Changeset 48484 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Sep 16, 2013 8:05:04 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88968
- Location:
- trunk/src/VBox/Runtime/common/misc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.