diff options
author | Pavel Labath <labath@google.com> | 2016-04-12 09:06:08 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2016-04-12 09:06:08 +0000 |
commit | ba45680758d9a8b3bd57526d827e21858882c324 (patch) | |
tree | f71de18dfbb3fe796f13564bf847afbcd143cf91 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | |
parent | a6ced02a670ef5a6f3bd4aa8714be63a75fe6ac9 (diff) | |
download | bcm5719-llvm-ba45680758d9a8b3bd57526d827e21858882c324.tar.gz bcm5719-llvm-ba45680758d9a8b3bd57526d827e21858882c324.zip |
Revert "Restore the lazy initialization of ScriptInterpreterPython, which was lost as part of the SystemLifetimeManager work"
This change breaks python unit tests.
This reverts commit 266033.
llvm-svn: 266050
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h index 86de2ddaa2c..83702a02554 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h @@ -372,6 +372,9 @@ public: void ResetOutputFileHandle(FILE *new_fh) override; static void + InitializePrivate (); + + static void InitializeInterpreter (SWIGInitCallback python_swig_init_callback, SWIGBreakpointCallbackFunction swig_breakpoint_callback, SWIGWatchpointCallbackFunction swig_watchpoint_callback, @@ -504,9 +507,6 @@ public: }; protected: - static void - InitializePrivate (); - class SynchronicityHandler { private: |