Changeset 18811 in vbox for trunk/src/VBox/VMM/PGMPhys.cpp
- Timestamp:
- Apr 7, 2009 12:21:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMPhys.cpp
r18792 r18811 2785 2785 * Allocate a new tracking structure first. 2786 2786 */ 2787 #if 1 /* disable on regression */2788 2787 # ifdef VBOX_WITH_2X_4GB_ADDR_SPACE 2789 2788 PPGMCHUNKR3MAP pChunk = (PPGMCHUNKR3MAP)MMR3HeapAlloc(pVM, MM_TAG_PGM_CHUNK_MAPPING, sizeof(*pChunk)); … … 2792 2791 # endif 2793 2792 AssertReturn(pChunk, VERR_NO_MEMORY); 2794 #else2795 PPGMCHUNKR3MAP pChunk;2796 rc = MMHyperAlloc(pVM, sizeof(*pChunk), 0, MM_TAG_PGM_CHUNK_MAPPING, (void **)&pChunk);2797 AssertRCReturn(rc, rc);2798 #endif2799 2793 pChunk->Core.Key = idChunk; 2800 2794 pChunk->AgeCore.Key = pVM->pgm.s.ChunkR3Map.iNow;
Note:
See TracChangeset
for help on using the changeset viewer.