VirtualBox

Ignore:
Timestamp:
Jul 25, 2019 5:21:24 PM (5 years ago)
Author:
vboxsync
Message:

Runtime/RTIoQueue: Updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/ioqueue/ioqueuebase.cpp

    r79952 r79983  
    128128
    129129RTDECL(int) RTIoQueueCreate(PRTIOQUEUE phIoQueue, PCRTIOQUEUEPROVVTABLE pProvVTable,
    130                             uint32_t fFlags, size_t cSqEntries, size_t cCqEntries)
     130                            uint32_t fFlags, uint32_t cSqEntries, uint32_t cCqEntries)
    131131{
    132132    AssertPtrReturn(phIoQueue, VERR_INVALID_POINTER);
     
    142142        pThis->pVTbl          = pProvVTable;
    143143        pThis->hIoQueueProv   = (RTIOQUEUEPROV)&pThis->abInst[0];
    144         pThis->cSqEntries     = (uint32_t)cSqEntries;
    145         pThis->cCqEntries     = (uint32_t)cCqEntries;
     144        pThis->cSqEntries     = cSqEntries;
     145        pThis->cCqEntries     = cCqEntries;
    146146        pThis->cReqsCommitted = 0;
    147147        pThis->cReqsPrepared  = 0;
Note: See TracChangeset for help on using the changeset viewer.

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