Changeset 26455 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Feb 12, 2010 8:17:33 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57603
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/memobj-r0drv-nt.cpp
r26434 r26455 350 350 PhysAddrHighest.QuadPart = PhysHighest; 351 351 PhysAddrLowest.QuadPart = 0; 352 PhysAddrBoundary.QuadPart = uAlignment;352 PhysAddrBoundary.QuadPart = (uAlignment == PAGE_SIZE) ? 0 : uAlignment; 353 353 void *pv = MmAllocateContiguousMemorySpecifyCache(cb, PhysAddrLowest, PhysAddrHighest, PhysAddrBoundary, MmCached); 354 354 if (!pv)
Note:
See TracChangeset
for help on using the changeset viewer.