Changeset 20862 in vbox for trunk/include/VBox
- Timestamp:
- Jun 23, 2009 6:25:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r20860 r20862 697 697 698 698 /** 699 * Locks down the physical memory backing a virtual memory700 * range in the current process.701 *702 * @returns VBox status code.703 * @param pvStart Start of virtual memory range.704 * Must be page aligned.705 * @param cPages Number of pages.706 * @param paPages Where to store the physical page addresses returned.707 * On entry this will point to an array of with cbMemory >> PAGE_SHIFT entries.708 */709 SUPR3DECL(int) SUPPageLock(void *pvStart, size_t cPages, PSUPPAGE paPages);710 711 /**712 * Releases locked down pages.713 *714 * @returns VBox status code.715 * @param pvStart Start of virtual memory range previously locked716 * down by SUPPageLock().717 */718 SUPR3DECL(int) SUPPageUnlock(void *pvStart);719 720 /**721 699 * Allocate non-zeroed, locked, pages with user and, optionally, kernel 722 700 * mappings.
Note:
See TracChangeset
for help on using the changeset viewer.