Changeset 13615 in vbox
- Timestamp:
- Oct 28, 2008 12:54:17 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38536
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxRecompiler.c
r13559 r13615 734 734 * Sync the state and enable single instruction / single stepping. 735 735 */ 736 rc = REMR3State(pVM , false /* no need to flush the TBs; we always compile. */);736 rc = REMR3State(pVM); 737 737 if (VBOX_SUCCESS(rc)) 738 738 { … … 1628 1628 * pending that would immediatly interrupt execution. 1629 1629 */ 1630 REMR3DECL(int) REMR3State(PVM pVM , bool fFlushTBs)1630 REMR3DECL(int) REMR3State(PVM pVM) 1631 1631 { 1632 1632 register const CPUMCTX *pCtx; … … 1647 1647 pVM->rem.s.fInStateSync = true; 1648 1648 1649 if (fFlushTBs) 1649 /* 1650 * If we have to flush TBs, do that immediately. 1651 */ 1652 if (pVM->rem.s.fFlushTBs) 1650 1653 { 1651 1654 STAM_COUNTER_INC(&gStatFlushTBs); 1652 1655 tb_flush(&pVM->rem.s.Env); 1656 pVM->rem.s.fFlushTBs = false; 1653 1657 } 1654 1658
Note:
See TracChangeset
for help on using the changeset viewer.