8.8.1.1.1.2.9. GlobalBreakpoint¶
- interface GlobalBreakpoint()¶
- enable()¶
Enable global breakpoint for this target. (On Arm this is also known as Cross-Triggering.)
When global breakpoint is enabled, this target will halt when any other target with global breakpoint enabled halts for any reason.
session.globalBreakpoint.enable();
- Return type:
void
- disable()¶
Disables global breakpoint for this target.
session.globalBreakpoint.disable();
- Return type:
void