Changeset 34406 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 26, 2010 4:45:34 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 68177
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMAsyncCompletionFileCache.cpp
r33540 r34406 647 647 if (!RTListIsEmpty(&ListDirtyNotCommitted)) 648 648 { 649 PPDMACFILECACHEENTRY pEntry = RTList NodeGetFirst(&ListDirtyNotCommitted,650 651 649 PPDMACFILECACHEENTRY pEntry = RTListGetFirst(&ListDirtyNotCommitted, 650 PDMACFILECACHEENTRY, 651 NodeNotCommitted); 652 652 653 653 while (!RTListNodeIsLast(&ListDirtyNotCommitted, &pEntry->NodeNotCommitted)) … … 690 690 Assert(!RTListIsEmpty(&pCache->ListEndpoints)); 691 691 692 PPDMACFILEENDPOINTCACHE pEndpointCache = RTList NodeGetFirst(&pCache->ListEndpoints,693 694 692 PPDMACFILEENDPOINTCACHE pEndpointCache = RTListGetFirst(&pCache->ListEndpoints, 693 PDMACFILEENDPOINTCACHE, 694 NodeCacheEndpoint); 695 695 AssertPtr(pEndpointCache); 696 696 -
trunk/src/VBox/VMM/PDMBlkCache.cpp
r34386 r34406 654 654 if (!RTListIsEmpty(&ListDirtyNotCommitted)) 655 655 { 656 PPDMBLKCACHEENTRY pEntry = RTListNodeGetFirst(&ListDirtyNotCommitted, 657 PDMBLKCACHEENTRY, 658 NodeNotCommitted); 656 PPDMBLKCACHEENTRY pEntry = RTListGetFirst(&ListDirtyNotCommitted, PDMBLKCACHEENTRY, NodeNotCommitted); 659 657 660 658 while (!RTListNodeIsLast(&ListDirtyNotCommitted, &pEntry->NodeNotCommitted)) … … 697 695 Assert(!RTListIsEmpty(&pCache->ListUsers)); 698 696 699 PPDMBLKCACHE pBlkCache = RTListNodeGetFirst(&pCache->ListUsers, 700 PDMBLKCACHE, 701 NodeCacheUser); 697 PPDMBLKCACHE pBlkCache = RTListGetFirst(&pCache->ListUsers, PDMBLKCACHE, NodeCacheUser); 702 698 AssertPtr(pBlkCache); 703 699
Note:
See TracChangeset
for help on using the changeset viewer.