[lldb/Debugger] Rename IO handler methods to be more meaningful (NFC)

Make it clear form the method names whether they are synchronous or
asynchronous.
This commit is contained in:
Jonas Devlieghere
2020-01-15 14:56:28 -08:00
parent 6b29aa2118
commit 7ce2de2ce4
10 changed files with 67 additions and 52 deletions

View File

@@ -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);
}
}