Skip to content

Commit c92c508

Browse files
Update API headers.
Summary: * Provide API doc for SBProcess::SaveCore. * Fix typo in SBAttachInfo doc comments. * SBBreakpointList: Name some variables same as C++. Subscribers: lldb-commits Differential Revision: https://reviews.llvm.org/D35614 llvm-svn: 308425
1 parent be63e06 commit c92c508

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lldb/include/lldb/API/SBAttachInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class LLDB_API SBAttachInfo {
162162
/// Get the listener that will be used to receive process events.
163163
///
164164
/// If no listener has been set via a call to
165-
/// SBLaunchInfo::SetListener(), then an invalid SBListener will be
165+
/// SBAttachInfo::SetListener(), then an invalid SBListener will be
166166
/// returned (SBListener::IsValid() will return false). If a listener
167167
/// has been set, then the valid listener object will be returned.
168168
//----------------------------------------------------------------------

lldb/include/lldb/API/SBBreakpoint.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ class LLDB_API SBBreakpointList {
154154

155155
SBBreakpoint FindBreakpointByID(lldb::break_id_t);
156156

157-
void Append(const SBBreakpoint &sb_file);
157+
void Append(const SBBreakpoint &sb_bkpt);
158158

159-
bool AppendIfUnique(const SBBreakpoint &sb_file);
159+
bool AppendIfUnique(const SBBreakpoint &sb_bkpt);
160160

161161
void AppendByID(lldb::break_id_t id);
162162

lldb/include/lldb/API/SBProcess.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ class LLDB_API SBProcess {
350350

351351
bool IsInstrumentationRuntimePresent(InstrumentationRuntimeType type);
352352

353-
// Save the state of the process in a core file (or mini dump on Windows).
353+
/// Save the state of the process in a core file (or mini dump on Windows).
354354
lldb::SBError SaveCore(const char *file_name);
355355

356356
//------------------------------------------------------------------

0 commit comments

Comments
 (0)