summaryrefslogtreecommitdiffstats
path: root/lldb/source/Interpreter/ScriptInterpreter.cpp
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2012-08-09 23:09:42 +0000
committerJohnny Chen <johnny.chen@apple.com>2012-08-09 23:09:42 +0000
commite9a5627e7ae21d10049352e196ff7469a40c6d06 (patch)
tree97ada238546a6071edbdf67f1ba78bc41ca7f6f0 /lldb/source/Interpreter/ScriptInterpreter.cpp
parent637ff0cc0fc79bdd6ccea856835f278e89f79b67 (diff)
downloadbcm5719-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.cpp11
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)
{
OpenPOWER on IntegriCloud