VirtualBox

Changeset 23816 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Oct 16, 2009 11:47:32 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
53565
Message:

SSM: Added flag for indicating that we're not using SSMR3PutStructEx and therefor shouldn't be too uptight about some things (HCPTR_HACK_U32).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/SSM.cpp

    r23801 r23816  
    61106110                    uint32_t u32;
    61116111                    rc = ssmR3DataRead(pSSM, &u32, sizeof(uint32_t));
    6112                     AssertMsgReturn(u32 == 0 || RT_FAILURE(rc), ("%#x\n", u32), VERR_SSM_FIELD_INVALID_VALUE);
     6112                    AssertMsgReturn(RT_FAILURE(rc) || u32 == 0 || (fFlags & SSMSTRUCT_FLAGS_SAVED_AS_MEM),
     6113                                    ("high=%#x low=%#x (%s)\n", u32, *(uint32_t *)pbField, pCur->pszName),
     6114                                    VERR_SSM_FIELD_INVALID_VALUE);
    61136115                }
    61146116                break;
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