Changeset 4616 in vbox for trunk/src/VBox/VMM/VMMAll/REMAll.cpp
- Timestamp:
- Sep 7, 2007 7:34:00 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24261
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r4615 r4616 104 104 * @param cb Size of the handler range. 105 105 * @param fHasHCHandler Set if the handler have a HC callback function. 106 * @param pvHCPtr The HC virtual address corresponding to GCPhys if available.106 * @param fRestoreAsRAM Whether the to restore it as normal RAM or as unassigned memory. 107 107 */ 108 REMDECL(void) REMNotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, RTHCPTR pvHCPtr)108 REMDECL(void) REMNotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM) 109 109 { 110 110 if (pVM->rem.s.cHandlerNotifications >= ELEMENTS(pVM->rem.s.aHandlerNotifications)) … … 116 116 pRec->u.PhysicalDeregister.cb = cb; 117 117 pRec->u.PhysicalDeregister.fHasHCHandler = fHasHCHandler; 118 pRec->u.PhysicalDeregister. pvHCPtr = pvHCPtr;118 pRec->u.PhysicalDeregister.fRestoreAsRAM = fRestoreAsRAM; 119 119 } 120 120
Note:
See TracChangeset
for help on using the changeset viewer.