VirtualBox

Changeset 2006 in vbox


Ignore:
Timestamp:
Apr 10, 2007 12:38:44 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
20294
Message:

SSMR3Get/PutBool replaced by UInt. Missing exports.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/new/VBoxRecompiler.c

    r1983 r2006  
    471471
    472472    /* Remember if we've entered raw mode (vital for ring 1 checks in e.g. iret emulation). */
    473     SSMR3PutBool(pSSM, !!(pRem->Env.state & CPU_RAW_RING0));
     473    SSMR3PutU32(pSSM, !!(pRem->Env.state & CPU_RAW_RING0));
    474474
    475475    /*
     
    498498{
    499499    uint32_t u32Dummy;
    500     bool    fRawRing0 = false;
     500    uint32_t fRawRing0 = false;
    501501    LogFlow(("remR3Load:\n"));
    502502
     
    540540
    541541    /* Remember if we've entered raw mode (vital for ring 1 checks in e.g. iret emulation). */
    542     SSMR3GetBool(pSSM, &fRawRing0);
     542    SSMR3GetUInt(pSSM, &fRawRing0);
    543543    if (fRawRing0)
    544544        pRem->Env.state |= CPU_RAW_RING0;
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