-
Notifications
You must be signed in to change notification settings - Fork 18
Docs : documentation for LLDB debugging #268
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
Conversation
| - **Stop Execution:** Pause the running process | ||
| (interrupt command, icon may not always be shown). | ||
| - **Additional Controls:** | ||
| ack (↶ in blue) for reverse debugging | ||
| if available. | ||
| t (⟲ in green) to restart the session. | ||
| nect (🔗 in orange) to detach the debugger | ||
| while leaving the process running. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would only document the buttons that are visible in the screenshot (so not Stop Execution or Back for reverse debugging).
As we are attaching to a running process, restart and disconnect have the same behaviour: they stop the debugger and return to R.
(Note you have some letters missing here).
It would be nice to use actual pictures of the buttons here. According to ChatGPT you could do this in markdown
Click the {: .icon } to open the menu.Then in docs/css/custom.css (which should be included via extra_css in mkdocs.yml):
.icon {
height: 20px;
vertical-align: middle;
}|
I have resolved all the issues here apart from using images for the toolbar buttons, which is a nice-to-have. I created a new issue for that (#286) so we can merge in this section as a first draft. |
Closes #196