VirtualBox

Changeset 48484 in vbox for trunk/src/VBox/Runtime/common


Ignore:
Timestamp:
Sep 16, 2013 8:05:04 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
88968
Message:

Runtime: RTReq -> RTReqQueue

Location:
trunk/src/VBox/Runtime/common/misc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/req.cpp

    r39550 r48484  
    229229RTDECL(int) RTReqSubmit(PRTREQ hReq, RTMSINTERVAL cMillies)
    230230{
    231     LogFlow(("RTReqQueue: hReq=%p cMillies=%d\n", hReq, cMillies));
     231    LogFlow(("RTReqSubmit: hReq=%p cMillies=%d\n", hReq, cMillies));
    232232
    233233    /*
     
    268268        rc = RTReqWait(pReq, cMillies);
    269269
    270     LogFlow(("RTReqQueue: returns %Rrc\n", rc));
     270    LogFlow(("RTReqSubmit: returns %Rrc\n", rc));
    271271    return rc;
    272272}
  • trunk/src/VBox/Runtime/common/misc/reqqueue.cpp

    r39550 r48484  
    9999RTDECL(int) RTReqQueueProcess(RTREQQUEUE hQueue, RTMSINTERVAL cMillies)
    100100{
    101     LogFlow(("RTReqProcess %x\n", hQueue));
     101    LogFlow(("RTReqQueueProcess %x\n", hQueue));
    102102
    103103    /*
     
    138138        PRTREQ pReq = pReqs;
    139139        if (pReq->pNext)
    140             Log2(("RTReqProcess: 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));
    141141        pReqs = NULL;
    142142        while (pReq)
     
    169169    }
    170170
    171     LogFlow(("RTReqProcess: returns %Rrc\n", rc));
     171    LogFlow(("RTReqQueueProcess: returns %Rrc\n", rc));
    172172    return rc;
    173173}
     
    210210RTDECL(int) RTReqQueueCallV(RTREQQUEUE hQueue, PRTREQ *ppReq, RTMSINTERVAL cMillies, unsigned fFlags, PFNRT pfnFunction, unsigned cArgs, va_list Args)
    211211{
    212     LogFlow(("RTReqCallV: 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));
    213213
    214214    /*
     
    259259    {
    260260        *ppReq = pReq;
    261         LogFlow(("RTReqCallV: returns %Rrc *ppReq=%p\n", rc, pReq));
     261        LogFlow(("RTReqQueueCallV: returns %Rrc *ppReq=%p\n", rc, pReq));
    262262    }
    263263    else
    264         LogFlow(("RTReqCallV: returns %Rrc\n", rc));
     264        LogFlow(("RTReqQueueCallV: returns %Rrc\n", rc));
    265265    Assert(rc != VERR_INTERRUPTED);
    266266    return rc;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette