Searched defs:iFirstFree (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dfileaio-posix.cpp148 unsigned iFirstFree; member in struct:RTFILEAIOCTXINTERNAL
204 while ( (pCtxInt->iFirstFree < pCtxInt->cReqsWaitMax)
208 pCtxInt->apReqs[pCtxInt->iFirstFree] = pReqHead;
209 pReqHead->iWaitingList = pCtxInt->iFirstFree;
213 pCtxInt->apReqs[pCtxInt->iFirstFree]->pNext = NULL;
214 pCtxInt->apReqs[pCtxInt->iFirstFree]->pPrev = NULL;
215 pCtxInt->iFirstFree++;
217 Assert( (pCtxInt->iFirstFree <= pCtxInt->cMaxRequests)
218 && (pCtxInt->iFirstFree <= pCtxInt->cReqsWaitMax));
259 pCtxInt->apReqs[pReqToCancel->iWaitingList] = pCtxInt->apReqs[--pCtxInt->iFirstFree];
[all...]

Completed in 43 milliseconds