Changeset 79951 in vbox
- Timestamp:
- Jul 24, 2019 11:17:19 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132376
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/ioqueue/ioqueue-aiofile-provider.cpp
r79950 r79951 96 96 97 97 pThis->cReqsToCommitMax = cSqEntries; 98 pThis->cReqsFreeMax = cSqEntries;98 pThis->cReqsFreeMax = (uint32_t)cSqEntries; 99 99 pThis->cReqsFree = 0; 100 100 … … 105 105 if (RT_LIKELY(pThis->pahReqsFree)) 106 106 { 107 rc = RTFileAioCtxCreate(&pThis->hAioCtx, cSqEntries, RTFILEAIOCTX_FLAGS_WAIT_WITHOUT_PENDING_REQUESTS);107 rc = RTFileAioCtxCreate(&pThis->hAioCtx, (uint32_t)cSqEntries, RTFILEAIOCTX_FLAGS_WAIT_WITHOUT_PENDING_REQUESTS); 108 108 if (RT_SUCCESS(rc)) 109 109 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.