diff options
author | Enrico Granata <egranata@apple.com> | 2012-08-24 00:30:47 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-08-24 00:30:47 +0000 |
commit | 5790759a061522a60903efba2bab67937062729d (patch) | |
tree | 50f7cec2ac81d02c748cb03330e3b8cb8ab92c09 /lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h | |
parent | def829ee866d986bd4aaca8114a7790b1008c890 (diff) | |
download | bcm5719-llvm-5790759a061522a60903efba2bab67937062729d.tar.gz bcm5719-llvm-5790759a061522a60903efba2bab67937062729d.zip |
Adding bindings to the Script Interpreter for some basic Python OS plugin functionality (still WIP)
llvm-svn: 162513
Diffstat (limited to 'lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h')
-rw-r--r-- | lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h index 850ec648bff..5711426ca8f 100644 --- a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h +++ b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h @@ -14,6 +14,7 @@ // C Includes // C++ Includes // Other libraries and framework includes +#include "lldb/Interpreter/ScriptInterpreter.h" #include "lldb/Target/OperatingSystem.h" class DynamicRegisterInfo; @@ -82,6 +83,8 @@ protected: lldb::ValueObjectSP m_thread_list_valobj_sp; std::auto_ptr<DynamicRegisterInfo> m_register_info_ap; + lldb_private::ScriptInterpreter *m_interpreter; + void* m_python_object; }; |