- Timestamp:
- Oct 23, 2009 5:52:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMAsyncCompletionFile.cpp
r23973 r24047 667 667 } 668 668 669 /* Check for an idling one or create new if not found */ 670 if (!pEpClassFile->pAioMgrHead) 669 pAioMgr = pEpClassFile->pAioMgrHead; 670 671 /* Check for an idling not failsafe one or create new if not found */ 672 while (pAioMgr && pAioMgr->fFailsafe) 673 pAioMgr = pAioMgr->pNext; 674 675 if (!pAioMgr) 671 676 { 672 677 rc = pdmacFileAioMgrCreate(pEpClassFile, &pAioMgr, false); 673 678 AssertRC(rc); 674 }675 else676 {677 pAioMgr = pEpClassFile->pAioMgrHead;678 679 } 679 680 }
Note:
See TracChangeset
for help on using the changeset viewer.