Changeset 79983 in vbox for trunk/src/VBox/Runtime/common/ioqueue/ioqueuebase.cpp
- Timestamp:
- Jul 25, 2019 5:21:24 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ioqueue/ioqueuebase.cpp
r79952 r79983 128 128 129 129 RTDECL(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) 131 131 { 132 132 AssertPtrReturn(phIoQueue, VERR_INVALID_POINTER); … … 142 142 pThis->pVTbl = pProvVTable; 143 143 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; 146 146 pThis->cReqsCommitted = 0; 147 147 pThis->cReqsPrepared = 0;
Note:
See TracChangeset
for help on using the changeset viewer.