Changeset 25008 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 26, 2009 2:49:44 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55319
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDM.cpp
r24748 r25008 680 680 { 681 681 PVMCPU pVCpu = &pVM->aCpus[idCpu]; 682 SSMR3PutU Int(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_APIC));683 SSMR3PutU Int(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_PIC));684 SSMR3PutU Int(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_NMI));685 SSMR3PutU Int(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_SMI));686 } 687 SSMR3PutU Int(pSSM, VM_FF_ISSET(pVM, VM_FF_PDM_DMA));682 SSMR3PutU32(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_APIC)); 683 SSMR3PutU32(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_PIC)); 684 SSMR3PutU32(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_NMI)); 685 SSMR3PutU32(pSSM, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_INTERRUPT_SMI)); 686 } 687 SSMR3PutU32(pSSM, VM_FF_ISSET(pVM, VM_FF_PDM_DMA)); 688 688 689 689 pdmR3SaveBoth(pVM, pSSM); … … 773 773 774 774 /* APIC interrupt */ 775 RTUINTfInterruptPending = 0;776 rc = SSMR3GetU Int(pSSM, &fInterruptPending);775 uint32_t fInterruptPending = 0; 776 rc = SSMR3GetU32(pSSM, &fInterruptPending); 777 777 if (RT_FAILURE(rc)) 778 778 return rc; … … 788 788 /* PIC interrupt */ 789 789 fInterruptPending = 0; 790 rc = SSMR3GetU Int(pSSM, &fInterruptPending);790 rc = SSMR3GetU32(pSSM, &fInterruptPending); 791 791 if (RT_FAILURE(rc)) 792 792 return rc; … … 803 803 { 804 804 /* NMI interrupt */ 805 RTUINTfInterruptPending = 0;806 rc = SSMR3GetU Int(pSSM, &fInterruptPending);805 fInterruptPending = 0; 806 rc = SSMR3GetU32(pSSM, &fInterruptPending); 807 807 if (RT_FAILURE(rc)) 808 808 return rc; … … 818 818 /* SMI interrupt */ 819 819 fInterruptPending = 0; 820 rc = SSMR3GetU Int(pSSM, &fInterruptPending);820 rc = SSMR3GetU32(pSSM, &fInterruptPending); 821 821 if (RT_FAILURE(rc)) 822 822 return rc; … … 833 833 834 834 /* DMA pending */ 835 RTUINTfDMAPending = 0;836 rc = SSMR3GetU Int(pSSM, &fDMAPending);835 uint32_t fDMAPending = 0; 836 rc = SSMR3GetU32(pSSM, &fDMAPending); 837 837 if (RT_FAILURE(rc)) 838 838 return rc; … … 857 857 /* Get the sequence number / terminator. */ 858 858 uint32_t u32Sep; 859 intrc = SSMR3GetU32(pSSM, &u32Sep);859 rc = SSMR3GetU32(pSSM, &u32Sep); 860 860 if (RT_FAILURE(rc)) 861 861 return rc; … … 870 870 if (RT_FAILURE(rc)) 871 871 return rc; 872 RTUINTiInstance;873 rc = SSMR3GetU Int(pSSM, &iInstance);872 uint32_t iInstance; 873 rc = SSMR3GetU32(pSSM, &iInstance); 874 874 if (RT_FAILURE(rc)) 875 875 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.