diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-15 14:56:28 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-15 14:58:16 -0800 |
commit | 7ce2de2ce4e7d4dd8e1e5a7a5b35c0f98e46681d (patch) | |
tree | 04055cb37f83b110b5772ba93ac0fdb75525e35d /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | |
parent | 6b29aa21180cf14bfb619d38fc4826913cabfb66 (diff) | |
download | llvm-7ce2de2ce4e7d4dd8e1e5a7a5b35c0f98e46681d.zip llvm-7ce2de2ce4e7d4dd8e1e5a7a5b35c0f98e46681d.tar.gz llvm-7ce2de2ce4e7d4dd8e1e5a7a5b35c0f98e46681d.tar.bz2 |
[lldb/Debugger] Rename IO handler methods to be more meaningful (NFC)
Make it clear form the method names whether they are synchronous or
asynchronous.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index 06e0d5bf..733d796c 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -1064,7 +1064,7 @@ void ScriptInterpreterPythonImpl::ExecuteInterpreterLoop() { IOHandlerSP io_handler_sp(new IOHandlerPythonInterpreter(debugger, this)); if (io_handler_sp) { - debugger.PushIOHandler(io_handler_sp); + debugger.RunIOHandlerAsync(io_handler_sp); } } |