Changeset 20845 in vbox for trunk/src/recompiler
- Timestamp:
- Jun 23, 2009 2:55:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r20812 r20845 648 648 /* Remember if we've entered raw mode (vital for ring 1 checks in e.g. iret emulation). */ 649 649 SSMR3PutU32(pSSM, !!(pRem->Env.state & CPU_RAW_RING0)); 650 SSMR3PutU Int(pSSM, pVM->rem.s.u32PendingInterrupt);650 SSMR3PutU32(pSSM, pVM->rem.s.u32PendingInterrupt); 651 651 652 652 return SSMR3PutU32(pSSM, ~0); /* terminator */ … … 726 726 * Load the REM stuff. 727 727 */ 728 rc = SSMR3GetUInt(pSSM, (uint32_t*)&pRem->cInvalidatedPages); 728 /** @todo r=bird: We should just drop all these items, restoring doesn't make 729 * sense. */ 730 rc = SSMR3GetU32(pSSM, (uint32_t *)&pRem->cInvalidatedPages); 729 731 if (RT_FAILURE(rc)) 730 732 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.