diff options
author | Jim Ingham <jingham@apple.com> | 2010-06-18 00:58:52 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-06-18 00:58:52 +0000 |
commit | ae1c4cf5680d8978ab5d12c5757ee5c448f98c12 (patch) | |
tree | fd6827fa57b5054ada3c84a2705aa4c48a8b1d88 /lldb/source/Commands/CommandObjectBreakpoint.h | |
parent | 8ba26b48bb5ac8a4cbaffd32dd646e08738c7275 (diff) | |
download | bcm5719-llvm-ae1c4cf5680d8978ab5d12c5757ee5c448f98c12.tar.gz bcm5719-llvm-ae1c4cf5680d8978ab5d12c5757ee5c448f98c12.zip |
Change "breakpoint configure" to "breakpoint modify" so it doesn't collide with "breakpoint command"
Change "breakpoint enable/disable" so changing a breakpoint's state doesn't also overwrite the location states.
llvm-svn: 106261
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpoint.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpoint.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpoint.h b/lldb/source/Commands/CommandObjectBreakpoint.h index 7e7bd61181f..5374146ff47 100644 --- a/lldb/source/Commands/CommandObjectBreakpoint.h +++ b/lldb/source/Commands/CommandObjectBreakpoint.h @@ -119,18 +119,18 @@ private: }; //------------------------------------------------------------------------- -// CommandObjectMultiwordBreakpointConfigure +// CommandObjectMultiwordBreakpointModify //------------------------------------------------------------------------- -class CommandObjectBreakpointConfigure : public CommandObject +class CommandObjectBreakpointModify : public CommandObject { public: - CommandObjectBreakpointConfigure (); + CommandObjectBreakpointModify (); virtual - ~CommandObjectBreakpointConfigure (); + ~CommandObjectBreakpointModify (); virtual bool Execute (Args& command, @@ -170,6 +170,8 @@ public: uint32_t m_thread_index; std::string m_thread_name; std::string m_queue_name; + bool m_enable_passed; + bool m_enable_value; }; |