[Lldb-commits] [lldb] r237279 - Add a comment clarifying what func_name_type_mask is.
Jim Ingham
jingham at apple.com
Wed May 13 12:01:15 PDT 2015
Author: jingham
Date: Wed May 13 14:01:15 2015
New Revision: 237279
URL: http://llvm.org/viewvc/llvm-project?rev=237279&view=rev
Log:
Add a comment clarifying what func_name_type_mask is.
Modified:
lldb/trunk/include/lldb/Target/Target.h
Modified: lldb/trunk/include/lldb/Target/Target.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Target.h?rev=237279&r1=237278&r2=237279&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Target.h (original)
+++ lldb/trunk/include/lldb/Target/Target.h Wed May 13 14:01:15 2015
@@ -733,7 +733,8 @@ public:
// Use this to create a function breakpoint by name in containingModule, or all modules if it is NULL
// When "skip_prologue is set to eLazyBoolCalculate, we use the current target
- // setting, else we use the values passed in
+ // setting, else we use the values passed in.
+ // func_name_type_mask is or'ed values from the FunctionNameType enum.
lldb::BreakpointSP
CreateBreakpoint (const FileSpecList *containingModules,
const FileSpecList *containingSourceFiles,
@@ -754,6 +755,7 @@ public:
// This is the same as the func_name breakpoint except that you can specify a vector of names. This is cheaper
// than a regular expression breakpoint in the case where you just want to set a breakpoint on a set of names
// you already know.
+ // func_name_type_mask is or'ed values from the FunctionNameType enum.
lldb::BreakpointSP
CreateBreakpoint (const FileSpecList *containingModules,
const FileSpecList *containingSourceFiles,
More information about the lldb-commits
mailing list