Changeset 9115 in vbox for trunk/include
- Timestamp:
- May 26, 2008 11:18:34 AM (17 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hwacc_svm.h
r9008 r9115 697 697 HWACCMR0DECL(int) SVMR0InvalidatePage(PVM pVM, RTGCPTR GCVirt); 698 698 699 /** 700 * Invalidates a guest page by physical address 701 * 702 * NOTE: Assumes the current instruction references this physical page though a virtual address!! 703 * 704 * @returns VBox status code. 705 * @param pVM The VM to operate on. 706 * @param GCPhys Page to invalidate 707 */ 708 HWACCMR0DECL(int) SVMR0InvalidatePhysPage(PVM pVM, RTGCPHYS GCPhys); 709 699 710 #endif /* IN_RING0 */ 700 711 -
trunk/include/VBox/hwaccm.h
r9021 r9115 85 85 86 86 /** 87 * Invalidates a guest page by physical address 88 * 89 * NOTE: Assumes the current instruction references this physical page though a virtual address!! 90 * 91 * @returns VBox status code. 92 * @param pVM The VM to operate on. 93 * @param GCPhys Page to invalidate 94 */ 95 HWACCMDECL(int) HWACCMInvalidatePhysPage(PVM pVM, RTGCPHYS GCPhys); 96 97 /** 87 98 * Checks if nested paging is enabled 88 99 *
Note:
See TracChangeset
for help on using the changeset viewer.