-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[LLDB] Add draft docstrings for SBSaveCoreOptions #123132
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,72 @@ | ||||||||||
| %feature("docstring", | ||||||||||
| "A container for options to use when saving a core file. | ||||||||||
|
|
||||||||||
| SBSaveCoreOptions includes API's to specify the memory regions and threads to include | ||||||||||
| when generating a core file. These options are not exclusive the existing SaveCoreStyle option. | ||||||||||
|
||||||||||
| when generating a core file. These options are not exclusive the existing SaveCoreStyle option. | |
| when generating a core file. It extends the existing SaveCoreStyle option. |
Outdated
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.
| Full will save off all thread and memory regions, ignoring the memory regions and threads in | |
| the options object. | |
| eSaveCoreFull will save off all thread and memory regions, ignoring the memory regions and threads in | |
| the options object. |
Maybe make these bullet points to make it clear that you're iterating over the options, something like this:
* eSaveCoreFull: save off all thread and memory regions, ignoring the memory regions and threads specified in this option object.
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.
Sweet, I wanted to do a list but didn't realize if the docstrings supported markdown.
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.