Changeset 32245 in vbox for trunk/src/VBox
- Timestamp:
- Sep 6, 2010 9:51:00 AM (14 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/FTM.cpp
r32206 r32245 42 42 #include <include/internal/vm.h> 43 43 #include <include/internal/em.h> 44 #include <include/internal/pgm.h> 44 45 45 46 /******************************************************************************* … … 1126 1127 * is only a short suspend. 1127 1128 */ 1129 PGMR3ResetNoMorePhysWritesFlag(pVM); 1128 1130 PDMR3Resume(pVM); 1129 1131 -
trunk/src/VBox/VMM/PGM.cpp
r31997 r32245 2466 2466 #endif 2467 2467 2468 /** 2469 * Private API to reset fNoMorePhysWrites. 2470 */ 2471 VMMR3DECL(void) PGMR3ResetNoMorePhysWritesFlag(PVM pVM) 2472 { 2473 pVM->pgm.s.fNoMorePhysWrites = false; 2474 } 2468 2475 2469 2476 /** -
trunk/src/VBox/VMM/include/internal/pgm.h
r30572 r32245 31 31 VMMDECL(RTR3PTR) PGMPhysGCPhys2R3PtrAssert(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange); 32 32 #endif 33 33 VMMR3DECL(void) PGMR3ResetNoMorePhysWritesFlag(PVM pVM); 34 34 #endif
Note:
See TracChangeset
for help on using the changeset viewer.