VirtualBox

Changeset 13615 in vbox


Ignore:
Timestamp:
Oct 28, 2008 12:54:17 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38536
Message:

build fix (Knut, could you please updae both recompilers, if making changes, or at least ping me on that?)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler_new/VBoxRecompiler.c

    r13559 r13615  
    734734     * Sync the state and enable single instruction / single stepping.
    735735     */
    736     rc = REMR3State(pVM, false /* no need to flush the TBs; we always compile. */);
     736    rc = REMR3State(pVM);
    737737    if (VBOX_SUCCESS(rc))
    738738    {
     
    16281628 *          pending that would immediatly interrupt execution.
    16291629 */
    1630 REMR3DECL(int)  REMR3State(PVM pVM, bool fFlushTBs)
     1630REMR3DECL(int)  REMR3State(PVM pVM)
    16311631{
    16321632    register const CPUMCTX *pCtx;
     
    16471647    pVM->rem.s.fInStateSync = true;
    16481648
    1649     if (fFlushTBs)
     1649    /*
     1650     * If we have to flush TBs, do that immediately.
     1651     */
     1652    if (pVM->rem.s.fFlushTBs)
    16501653    {
    16511654        STAM_COUNTER_INC(&gStatFlushTBs);
    16521655        tb_flush(&pVM->rem.s.Env);
     1656        pVM->rem.s.fFlushTBs = false;
    16531657    }
    16541658
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette