Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proc: step breakpoints shouldn't hide normal breakpoints #3287

Merged
merged 1 commit into from
Apr 24, 2023

Commits on Apr 6, 2023

  1. proc: step breakpoints shouldn't hide normal breakpoints

    When using Step on a function that has a dynamic CALL instruction we
    set a Step breakpoint on the call.
    When it is hit we determine the destination of the CALL by looking at
    registers, set a breakpoint there and continue.
    If the Step breakpoint is hit simultaneously with a normal breakpoint
    our Step logic will take precedence and the normal breakpoint hit will
    be hidden from the user.
    
    Move the Step logic to a breaklet callback so that it does not
    interfere with the decision to stop.
    aarzilli committed Apr 6, 2023
    Configuration menu
    Copy the full SHA
    1fd3276 View commit details
    Browse the repository at this point in the history