Changeset 45028 in vbox for trunk/src/VBox
- Timestamp:
- Mar 13, 2013 8:35:58 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84272
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PGM.cpp
r45026 r45028 2505 2505 VMMR3_INT_DECL(void) PGMR3Reset(PVM pVM) 2506 2506 { 2507 int rc = VINF_SUCCESS;2508 2509 2507 LogFlow(("PGMR3Reset:\n")); 2510 2508 VM_ASSERT_EMT(pVM); … … 2527 2525 { 2528 2526 PVMCPU pVCpu = &pVM->aCpus[i]; 2529 rc = PGM_GST_PFN(Exit, pVCpu)(pVCpu);2530 AssertR C(rc);2527 int rc = PGM_GST_PFN(Exit, pVCpu)(pVCpu); 2528 AssertReleaseRC(rc); 2531 2529 } 2532 2530 … … 2543 2541 PVMCPU pVCpu = &pVM->aCpus[i]; 2544 2542 2545 rc = PGMR3ChangeMode(pVM, pVCpu, PGMMODE_REAL);2546 AssertR C(rc);2543 int rc = PGMR3ChangeMode(pVM, pVCpu, PGMMODE_REAL); 2544 AssertReleaseRC(rc); 2547 2545 2548 2546 STAM_REL_COUNTER_RESET(&pVCpu->pgm.s.cGuestModeChanges); … … 2582 2580 2583 2581 pgmUnlock(pVM); 2584 AssertReleaseRC(rc);2585 2582 } 2586 2583 … … 2599 2596 pgmLock(pVM); 2600 2597 2601 int rc = pgmR3PhysRamZeroAll(pVM); AssertLogRelRC(rc); 2602 rc = pgmR3PhysRomReset(pVM); AssertLogRelRC(rc); 2598 int rc = pgmR3PhysRamZeroAll(pVM); 2599 AssertReleaseRC(rc); 2600 2601 rc = pgmR3PhysRomReset(pVM); 2602 AssertReleaseRC(rc); 2603 2603 2604 2604 pgmUnlock(pVM);
Note:
See TracChangeset
for help on using the changeset viewer.