diff options
author | Greg Clayton <gclayton@apple.com> | 2012-08-24 05:45:15 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-08-24 05:45:15 +0000 |
commit | 435ce13937537261e92578c2a1d476c465666b99 (patch) | |
tree | 24e48d2db905d45069272baee689027f3126a12e /lldb/source/Interpreter/ScriptInterpreterPython.cpp | |
parent | 98e00797cdaf5f7e3c77378a2cb7993b0adfedee (diff) | |
download | bcm5719-llvm-435ce13937537261e92578c2a1d476c465666b99.tar.gz bcm5719-llvm-435ce13937537261e92578c2a1d476c465666b99.zip |
The OS plug-in can now get data from a python script that implements the protocol.
llvm-svn: 162540
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreterPython.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreterPython.cpp b/lldb/source/Interpreter/ScriptInterpreterPython.cpp index 2c406271bbb..97cf7f866d6 100644 --- a/lldb/source/Interpreter/ScriptInterpreterPython.cpp +++ b/lldb/source/Interpreter/ScriptInterpreterPython.cpp @@ -1845,8 +1845,8 @@ ScriptInterpreterPython::OSPlugin_QueryForThreadsInfo (lldb::ScriptInterpreterOb } lldb::ScriptInterpreterObjectSP -ScriptInterpreterPython::OSPlugin_QueryForThreadInfo (lldb::ScriptInterpreterObjectSP object, - lldb::tid_t thread_id) +ScriptInterpreterPython::OSPlugin_QueryForRegisterContextData (lldb::ScriptInterpreterObjectSP object, + lldb::tid_t thread_id) { Locker py_lock(this,Locker::AcquireLock,Locker::FreeLock); |