You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
It would be lovely if enable(), disable(), and remove() worked on the current breakpoint. Although those names are pretty generic, so perhaps some global thisbp could be defined?
The text was updated successfully, but these errors were encountered:
Use scenario: let's say I set a breakpoint then run some code. The breakpoint gets hit and I break into the debugger. I might want to examine a couple of local variables and then I decide I don't need that breakpoint anymore. It would be nice to be able to clear it with a single command. AFAICT currently I have to break out of Gallium to clear the breakpoint.
I should also confess that I haven't played with this a lot yet, because I've gotten segfaults pretty regularly with breakpoints. I should be more diligent about reporting them, but the fact that I so often use the debugger while altering pretty low-level stuff in base julia means I never know whether it's my own fault.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It would be lovely if
enable()
,disable()
, andremove()
worked on the current breakpoint. Although those names are pretty generic, so perhaps some globalthisbp
could be defined?The text was updated successfully, but these errors were encountered: