diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2012-08-09 23:09:42 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2012-08-09 23:09:42 +0000 |
| commit | e9a5627e7ae21d10049352e196ff7469a40c6d06 (patch) | |
| tree | 97ada238546a6071edbdf67f1ba78bc41ca7f6f0 /lldb/source/Interpreter/ScriptInterpreter.cpp | |
| parent | 637ff0cc0fc79bdd6ccea856835f278e89f79b67 (diff) | |
| download | bcm5719-llvm-e9a5627e7ae21d10049352e196ff7469a40c6d06.tar.gz bcm5719-llvm-e9a5627e7ae21d10049352e196ff7469a40c6d06.zip | |
rdar://problem/11457143 [ER] need "watchpoint command ..."
Add 'watchpoint command add/delete/list' to lldb, plus two .py test files.
llvm-svn: 161638
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp')
| -rw-r--r-- | lldb/source/Interpreter/ScriptInterpreter.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp index 5bdb70e1d1d..5c6f8eb2963 100644 --- a/lldb/source/Interpreter/ScriptInterpreter.cpp +++ b/lldb/source/Interpreter/ScriptInterpreter.cpp @@ -50,6 +50,17 @@ ScriptInterpreter::CollectDataForBreakpointCommandCallback result.AppendError ("ScriptInterpreter::GetScriptCommands(StringList &) is not implemented."); } +void +ScriptInterpreter::CollectDataForWatchpointCommandCallback +( + WatchpointOptions *bp_options, + CommandReturnObject &result +) +{ + result.SetStatus (eReturnStatusFailed); + result.AppendError ("ScriptInterpreter::GetScriptCommands(StringList &) is not implemented."); +} + std::string ScriptInterpreter::LanguageToString (lldb::ScriptLanguage language) { |

