Changeset 13565 in vbox for trunk/src/VBox/VMM/VMMAll/REMAll.cpp
- Timestamp:
- Oct 24, 2008 5:48:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/REMAll.cpp
r12989 r13565 34 34 #include <iprt/assert.h> 35 35 36 37 #ifndef IN_RING3 36 38 37 39 /** … … 157 159 } 158 160 161 #endif /* !IN_RING3 */ 162 163 /** 164 * Make REM flush all translation block upon the next call to REMR3State(). 165 * 166 * @param pVM Pointer to the shared VM structure. 167 */ 168 VMMDECL(void) REMFlushTBs(PVM pVM) 169 { 170 LogFlow(("REMFlushTBs: fFlushTBs=%RTbool fInREM=%RTbool fInStateSync=%RTbool\n", 171 pVM->rem.s.fFlushTBs, pVM->rem.s.fInREM, pVM->rem.s.fInStateSync)); 172 pVM->rem.s.fFlushTBs = true; 173 } 174
Note:
See TracChangeset
for help on using the changeset viewer.