Changeset 29027 in vbox for trunk/src/VBox/Runtime/r0drv/os2
- Timestamp:
- May 4, 2010 2:33:41 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61067
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/os2/memobj-r0drv-os2.cpp
r28777 r29027 231 231 232 232 233 int rtR0MemObjNativeEnterPhys(PPRTR0MEMOBJINTERNAL ppMem, RTHCPHYS Phys, size_t cb, u nsignedCachePolicy)234 { 235 AssertReturn( CachePolicy == RTMEM_CACHE_POLICY_DONT_CARE, VERR_NOT_IMPLEMENTED);233 int rtR0MemObjNativeEnterPhys(PPRTR0MEMOBJINTERNAL ppMem, RTHCPHYS Phys, size_t cb, uint32_t uCachePolicy) 234 { 235 AssertReturn(uCachePolicy == RTMEM_CACHE_POLICY_DONT_CARE, VERR_NOT_IMPLEMENTED); 236 236 237 237 /* create the object. */ … … 243 243 pMemOs2->Core.u.Phys.fAllocated = false; 244 244 pMemOs2->Core.u.Phys.PhysBase = Phys; 245 pMemOs2->Core.u.Phys.uCachePolicy = uCachePolicy; 245 246 *ppMem = &pMemOs2->Core; 246 247 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.