diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index b032319d167..df96b04c66a 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -58,7 +58,8 @@ public: eSetTypeAddress, eSetTypeFunctionName, eSetTypeFunctionRegexp, - eSetTypeSourceRegexp + eSetTypeSourceRegexp, + eSetTypeException } BreakpointSetType; CommandObjectBreakpointSet (CommandInterpreter &interpreter); @@ -101,7 +102,7 @@ public: uint32_t m_line_num; uint32_t m_column; bool m_check_inlines; - std::string m_func_name; + std::vector<std::string> m_func_names; uint32_t m_func_name_type_mask; std::string m_func_regexp; std::string m_source_text_regexp; @@ -112,6 +113,9 @@ public: uint32_t m_thread_index; std::string m_thread_name; std::string m_queue_name; + bool m_catch_bp; + bool m_throw_bp; + lldb::LanguageType m_language; }; |