Interface GlobalBreakpoint

interface GlobalBreakpoint {
    disable(): void;
    enable(): void;
}

Methods

Methods

  • Disables global breakpoint for this target.

    Returns void

    Will throw if the target does not support global breakpoint.

  • 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.

    Returns void

    Will throw if the target does not support global breakpoint.