Changeset 97393 in vbox
- Timestamp:
- Nov 4, 2022 11:07:16 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/DBGFR3Bp.cpp
r97200 r97393 1520 1520 * Get a breakpoint give by address. 1521 1521 * 1522 * @returns The breakpoint handle on success or NIL_DBGF if not found.1522 * @returns The breakpoint handle on success or NIL_DBGFBP if not found. 1523 1523 * @param pUVM The user mode VM handle. 1524 1524 * @param enmType The breakpoint type. … … 2198 2198 { 2199 2199 rc = VINF_SUCCESS; 2200 if (!DBGF_BP_PUB_IS_ENABLED(&pBp->Pub)) 2200 if ( !DBGF_BP_PUB_IS_ENABLED(&pBp->Pub) 2201 && (fFlags & DBGF_BP_F_ENABLED)) 2201 2202 rc = dbgfR3BpArm(pUVM, hBp, pBp); 2202 2203 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.