7.9.8.32. GEL_HWBreakPtDisableΒΆ
Disables a hardware breakpoint at the specified address.
Format
GEL_HWBreakPtDisable(address);
Parameters
address specifies the location of the hardware breakpoint.
Description
The hardware breakpoint at the specified address is disabled. If the breakpoint does not exist or is already disabled, no action is taken. This function does not disable software breakpoints.
Synchronous
Synchronous from GEL: Yes
Completely synchronous: No
Example
GEL_HWBreakPtDisable(0x2000);
GEL_HWBreakPtDisable(main + 100);
Related Topics