diff options
author | Greg Clayton <gclayton@apple.com> | 2012-10-18 22:40:37 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-10-18 22:40:37 +0000 |
commit | c9d645d30619ffad3e256928cb3d8cdc4c541998 (patch) | |
tree | dcdb3b2a37b27ad64e155f211f9c93b1e5f04d0c /lldb/source/Interpreter/ScriptInterpreterNone.cpp | |
parent | ed8560b09c3fa6f83350aa065b74e31a9d77e469 (diff) | |
download | bcm5719-llvm-c9d645d30619ffad3e256928cb3d8cdc4c541998.tar.gz bcm5719-llvm-c9d645d30619ffad3e256928cb3d8cdc4c541998.zip |
<rdar://problem/12491420>
Added a new setting that allows a python OS plug-in to detect threads and provide registers for memory threads. To enable this you set the setting:
settings set target.process.python-os-plugin-path lldb/examples/python/operating_system.py
Then run your program and see the extra threads.
llvm-svn: 166244
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterNone.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterNone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterNone.cpp b/lldb/source/Interpreter/ScriptInterpreterNone.cpp index 097133d04a5..a23ce37f038 100644 --- a/lldb/source/Interpreter/ScriptInterpreterNone.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterNone.cpp @@ -26,7 +26,7 @@ ScriptInterpreterNone::~ScriptInterpreterNone () } bool -ScriptInterpreterNone::ExecuteOneLine (const char *command, CommandReturnObject *, bool enable_io) +ScriptInterpreterNone::ExecuteOneLine (const char *command, CommandReturnObject *, bool enable_io, bool set_lldb_globals) { m_interpreter.GetDebugger().GetErrorStream().PutCString ("error: there is no embedded script interpreter in this mode.\n"); return false; |