Changeset 29027 in vbox for trunk/src/VBox/Runtime/r0drv/darwin/memobj-r0drv-darwin.cpp
- Timestamp:
- May 4, 2010 2:33:41 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/memobj-r0drv-darwin.cpp
r28800 r29027 604 604 605 605 606 int rtR0MemObjNativeEnterPhys(PPRTR0MEMOBJINTERNAL ppMem, RTHCPHYS Phys, size_t cb, u nsignedCachePolicy)607 { 608 AssertReturn( CachePolicy == RTMEM_CACHE_POLICY_DONT_CARE, VERR_NOT_IMPLEMENTED);606 int rtR0MemObjNativeEnterPhys(PPRTR0MEMOBJINTERNAL ppMem, RTHCPHYS Phys, size_t cb, uint32_t uCachePolicy) 607 { 608 AssertReturn(uCachePolicy == RTMEM_CACHE_POLICY_DONT_CARE, VERR_NOT_IMPLEMENTED); 609 609 610 610 /* … … 635 635 pMemDarwin->Core.u.Phys.PhysBase = Phys; 636 636 pMemDarwin->Core.u.Phys.fAllocated = false; 637 pMemDarwin->Core.u.Phys.uCachePolicy = uCachePolicy; 637 638 pMemDarwin->pMemDesc = pMemDesc; 638 639 *ppMem = &pMemDarwin->Core;
Note:
See TracChangeset
for help on using the changeset viewer.