Changeset 14825 in vbox for trunk/include/VBox
- Timestamp:
- Nov 30, 2008 7:54:21 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r14805 r14825 567 567 568 568 /** 569 * Maps a portion of a ring-3 only allocation into kernel space. 570 * 571 * @return VBox status code. 572 * 573 * @param pvR3 The address SUPR3PageAllocEx return. 574 * @param off Offset to start mapping at. Must be page aligned. 575 * @param cb Number of bytes to map. Must be page aligned. 576 * @param fFlags Flags, must be zero. 577 * @param pR0Ptr Where to store the address on success. 578 * 579 */ 580 SUPR3DECL(int) SUPR3PageMapKernel(void *pvR3, uint32_t off, uint32_t cb, uint32_t fFlags, PRTR0PTR pR0Ptr); 581 582 /** 569 583 * Free pages allocated by SUPR3PageAllocEx. 570 584 * … … 837 851 SUPR0DECL(int) SUPR0PageAlloc(PSUPDRVSESSION pSession, uint32_t cPages, PRTR3PTR ppvR3, PRTHCPHYS paPages); 838 852 SUPR0DECL(int) SUPR0PageAllocEx(PSUPDRVSESSION pSession, uint32_t cPages, uint32_t fFlags, PRTR3PTR ppvR3, PRTR0PTR ppvR0, PRTHCPHYS paPages); 853 SUPR0DECL(int) SUPR0PageMapKernel(PSUPDRVSESSION pSession, RTR3PTR pvR3, uint32_t offSub, uint32_t cbSub, uint32_t fFlags, PRTR0PTR ppvR0); 839 854 SUPR0DECL(int) SUPR0PageFree(PSUPDRVSESSION pSession, RTR3PTR pvR3); 840 855 SUPR0DECL(int) SUPR0GipMap(PSUPDRVSESSION pSession, PRTR3PTR ppGipR3, PRTHCPHYS pHCPhysGip);
Note:
See TracChangeset
for help on using the changeset viewer.