[Lldb-commits] [lldb] [LLDB][SBSaveCore] Implement a selectable threadlist for Core Options. (PR #100443)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Fri Jul 26 11:27:19 PDT 2024
================
@@ -53,6 +54,27 @@ class LLDB_API SBSaveCoreOptions {
/// \return The output file spec.
SBFileSpec GetOutputFile() const;
+ /// Set the process to save, or unset if supplied with a null process.
+ ///
+ /// \param process The process to save.
+ /// \return Success if process was set, otherwise an error
+ /// \note This will clear all process specific options if
+ /// an exisiting process is overriden.
----------------
clayborg wrote:
These lines should go up to column 79, these lines are stopping at column 60. Re-wrap.
Maybe reword a bit:
```
/// \note This will clear all process specific options if a different process
/// is specified from a previous call to this function or to any other
/// functions that set the process.
```
https://github.com/llvm/llvm-project/pull/100443
More information about the lldb-commits
mailing list