Changeset 87597 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Feb 4, 2021 12:05:03 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFR3Bp.cpp
r87346 r87597 1330 1330 { 1331 1331 uint32_t u32Entry = ASMAtomicReadU32(&pUVM->dbgf.s.paBpLocL1R3[idxL1]); 1332 1333 1332 if (u32Entry == DBGF_BP_INT3_L1_ENTRY_TYPE_NULL) 1334 1333 { … … 1344 1343 { 1345 1344 rc = dbgfR3BpInt3L2BstNodeAdd(pUVM, idxL1, hBp, pBp->Pub.u.Int3.GCPtr); 1346 if (rc == VINF_TRY_AGAIN) 1347 continue; 1348 1349 break; 1345 if (rc != VINF_TRY_AGAIN) 1346 break; 1350 1347 } 1351 1348 } … … 1563 1560 static int dbgfR3BpArm(PUVM pUVM, DBGFBP hBp, PDBGFBPINT pBp) 1564 1561 { 1565 int rc = VINF_SUCCESS;1562 int rc; 1566 1563 PVM pVM = pUVM->pVM; 1567 1564 … … 1637 1634 static int dbgfR3BpDisarm(PUVM pUVM, DBGFBP hBp, PDBGFBPINT pBp) 1638 1635 { 1639 int rc = VINF_SUCCESS;1636 int rc; 1640 1637 PVM pVM = pUVM->pVM; 1641 1638 … … 2229 2226 AssertPtrReturn(pBp, VERR_DBGF_BP_NOT_FOUND); 2230 2227 2231 int rc = VINF_SUCCESS;2228 int rc; 2232 2229 if (!DBGF_BP_PUB_IS_ENABLED(pBp->Pub.fFlagsAndType)) 2233 2230 rc = dbgfR3BpArm(pUVM, hBp, pBp); … … 2259 2256 AssertPtrReturn(pBp, VERR_DBGF_BP_NOT_FOUND); 2260 2257 2261 int rc = VINF_SUCCESS;2258 int rc; 2262 2259 if (DBGF_BP_PUB_IS_ENABLED(pBp->Pub.fFlagsAndType)) 2263 2260 rc = dbgfR3BpDisarm(pUVM, hBp, pBp);
Note:
See TracChangeset
for help on using the changeset viewer.