diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-16 16:45:18 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-16 16:45:47 -0800 |
commit | 2671df9bd675d4a1a07457dce748f4fe939e95fb (patch) | |
tree | fe8940261ec4cbb5661b7cd7d96d2884ce31fd09 /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 8ef57f3e3f1b241e5b544a167ac64b35f7275759 (diff) | |
download | llvm-2671df9bd675d4a1a07457dce748f4fe939e95fb.zip llvm-2671df9bd675d4a1a07457dce748f4fe939e95fb.tar.gz llvm-2671df9bd675d4a1a07457dce748f4fe939e95fb.tar.bz2 |
[lldb/Debugger] Rename ExecuteIOHandlers to RunIOHandlers (NFC)
This improves consistency among the related methods.
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 3701ee1..e583142 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -2943,7 +2943,7 @@ void CommandInterpreter::RunCommandInterpreter( if (spawn_thread) { m_debugger.StartIOHandlerThread(); } else { - m_debugger.ExecuteIOHandlers(); + m_debugger.RunIOHandlers(); if (auto_handle_events) m_debugger.StopEventHandlerThread(); |