Changeset 61797 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 21, 2016 2:57:15 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/APIC.cpp
r61795 r61797 1160 1160 PAPICCPU pApicCpu = VMCPU_TO_APICCPU(pVCpu); 1161 1161 1162 /** @todo r=bird: This is reckless saved state version handling that will break as soon as APIC_SAVED_STATE_VERSION 1163 * is bumped the next time. You should test: uVersion > APIC_SAVED_STATE_VERSION_VBOX_50 1164 * or alternativly always name the new version and do the test: uVersion >= APIC_SAVED_STATE_VERSION_VBOX_51_BETA2 */ 1165 if ( uVersion == APIC_SAVED_STATE_VERSION 1166 || uVersion == APIC_SAVED_STATE_VERSION_VBOX_51_BETA2) 1162 if (uVersion > APIC_SAVED_STATE_VERSION_VBOX_50) 1167 1163 { 1168 1164 /* Load the auxiliary data. */
Note:
See TracChangeset
for help on using the changeset viewer.