Changeset 86701 in vbox for trunk/include
- Timestamp:
- Oct 25, 2020 6:20:09 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 141085
- Location:
- trunk/include/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r86699 r86701 341 341 /** Internal processing error \#5 in the DBGF breakpoint manager code. */ 342 342 #define VERR_DBGF_BP_IPE_5 (-1230) 343 /** Internal processing error \#6 in the DBGF breakpoint manager code. */ 344 #define VERR_DBGF_BP_IPE_6 (-1231) 345 /** Number of tries to add an int3 breakpoint table to the lookup tables reached. */ 346 #define VERR_DBGF_BP_INT3_ADD_TRIES_REACHED (-1232) 343 347 /** @} */ 344 348 -
trunk/include/VBox/vmm/dbgf.h
r86699 r86701 51 51 */ 52 52 VMMRZ_INT_DECL(int) DBGFRZTrap01Handler(PVM pVM, PVMCPU pVCpu, PCPUMCTXCORE pRegFrame, RTGCUINTREG uDr6, bool fAltStepping); 53 VMMRZ_INT_DECL(int) DBGFRZTrap03Handler(PVM pVM, PVMCPUpVCpu, PCPUMCTXCORE pRegFrame);53 VMMRZ_INT_DECL(int) DBGFRZTrap03Handler(PVMCC pVM, PVMCPUCC pVCpu, PCPUMCTXCORE pRegFrame); 54 54 /** @} */ 55 55 #endif -
trunk/include/VBox/vmm/vm.h
r86118 r86701 1392 1392 /** The number of enabled hardware I/O breakpoints. */ 1393 1393 uint8_t cEnabledHwIoBreakpoints; 1394 #ifndef VBOX_WITH_LOTS_OF_DBGF_BPS 1394 1395 /** The number of enabled INT3 breakpoints. */ 1395 1396 uint8_t cEnabledInt3Breakpoints; 1396 1397 uint8_t abPadding[1]; /**< Unused padding space up for grabs. */ 1398 #else 1399 uint16_t u16Pad; /**< Unused padding space up for grabs. */ 1400 /** The number of enabled INT3 breakpoints. */ 1401 volatile uint32_t cEnabledInt3Breakpoints; 1402 #endif 1397 1403 } const ro; 1398 1404 #endif
Note:
See TracChangeset
for help on using the changeset viewer.