Lines Matching defs:pList
518 * Joins the list pList with whatever is linked up at *pHead.
520 static void vmr3ReqJoinFreeSub(volatile PVMREQ *ppHead, PVMREQ pList)
524 PVMREQ pHead = ASMAtomicXchgPtrT(ppHead, pList, PVMREQ);
530 ASMAtomicWritePtr(&pTail->pNext, pList);
532 if (ASMAtomicCmpXchgPtr(ppHead, pHead, pList))
538 pList = pHead;
546 * Joins the list pList with whatever is linked up at *pHead.
548 static void vmr3ReqJoinFree(PVMINTUSERPERVM pVMInt, PVMREQ pList)
554 PVMREQ pTail = pList;
568 vmr3ReqJoinFreeSub(&pVMInt->apReqFree[(pVMInt->iReqFree + 2) % RT_ELEMENTS(pVMInt->apReqFree)], pList);