Changeset 392 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Jan 27, 2007 10:28:29 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 17963
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/memobj.h
r385 r392 264 264 * @param pv User virtual address, page aligned. 265 265 * @param cb Number of bytes to lock, page aligned. 266 */ 267 int rtR0MemObjNativeLockUser(PPRTR0MEMOBJINTERNAL ppMem, void *pv, size_t cb); 266 * @param R0Process The process to lock pages in. 267 */ 268 int rtR0MemObjNativeLockUser(PPRTR0MEMOBJINTERNAL ppMem, void *pv, size_t cb, RTR0PROCESS R0Process); 268 269 269 270 /** … … 317 318 * @param cb The number of bytes to reserve, page aligned. 318 319 * @param uAlignment The alignment of the reserved memory; PAGE_SIZE, _2M or _4M. 319 */ 320 int rtR0MemObjNativeReserveUser(PPRTR0MEMOBJINTERNAL ppMem, void *pvFixed, size_t cb, size_t uAlignment); 320 * @param R0Process The process to reserve the memory in. 321 */ 322 int rtR0MemObjNativeReserveUser(PPRTR0MEMOBJINTERNAL ppMem, void *pvFixed, size_t cb, size_t uAlignment, RTR0PROCESS R0Process); 321 323 322 324 /** … … 341 343 * @param uAlignment The alignment of the reserved memory; PAGE_SIZE, _2M or _4M. 342 344 * @param fProt Combination of RTMEM_PROT_* flags (except RTMEM_PROT_NONE). 343 */ 344 int rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, PRTR0MEMOBJINTERNAL pMemToMap, void *pvFixed, size_t uAlignment, unsigned fProt); 345 * @param R0Process The process to map the memory into. 346 */ 347 int rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, PRTR0MEMOBJINTERNAL pMemToMap, void *pvFixed, size_t uAlignment, unsigned fProt, RTR0PROCESS R0Process); 345 348 346 349 /**
Note:
See TracChangeset
for help on using the changeset viewer.