Changeset 14824 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Nov 30, 2008 7:52:59 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/memobj.h
r8245 r14824 380 380 * 381 381 * @returns IPRT status code. 382 * @retval VERR_NOT_SUPPORTED see RTR0MemObjMapKernelEx. 383 * 382 384 * @param ppMem Where to store the ring-0 memory object handle of the mapping object. 383 385 * @param pMemToMap The object to be map. … … 385 387 * @param uAlignment The alignment of the reserved memory; PAGE_SIZE, _2M or _4M. 386 388 * @param fProt Combination of RTMEM_PROT_* flags (except RTMEM_PROT_NONE). 387 */ 388 int rtR0MemObjNativeMapKernel(PPRTR0MEMOBJINTERNAL ppMem, PRTR0MEMOBJINTERNAL pMemToMap, void *pvFixed, size_t uAlignment, unsigned fProt); 389 * @param offSub Where in the object to start mapping. If non-zero 390 * the value must be page aligned and cbSub must be 391 * non-zero as well. 392 * @param cbSub The size of the part of the object to be mapped. If 393 * zero the entire object is mapped. The value must be 394 * page aligned. 395 */ 396 int rtR0MemObjNativeMapKernel(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ pMemToMap, void *pvFixed, size_t uAlignment, 397 unsigned fProt, size_t offSub, size_t cbSub); 389 398 390 399 /**
Note:
See TracChangeset
for help on using the changeset viewer.