diff options
-rw-r--r-- | lldb/include/lldb/Core/Debugger.h | 2 | ||||
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lldb/include/lldb/Core/Debugger.h b/lldb/include/lldb/Core/Debugger.h index 9a3f9736fdc..41ab6405364 100644 --- a/lldb/include/lldb/Core/Debugger.h +++ b/lldb/include/lldb/Core/Debugger.h @@ -360,7 +360,7 @@ public: LoadPlugin (const FileSpec& spec, Error& error); void - ExecuteIOHanders(); + ExecuteIOHandlers(); bool IsForwardingEvents (); diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp index c68b89b2efd..7b3cffbafb6 100644 --- a/lldb/source/Core/Debugger.cpp +++ b/lldb/source/Core/Debugger.cpp @@ -902,7 +902,7 @@ Debugger::ClearIOHandlers () } void -Debugger::ExecuteIOHanders() +Debugger::ExecuteIOHandlers() { while (1) @@ -1743,7 +1743,7 @@ lldb::thread_result_t Debugger::IOHandlerThread (lldb::thread_arg_t arg) { Debugger *debugger = (Debugger *)arg; - debugger->ExecuteIOHanders(); + debugger->ExecuteIOHandlers(); debugger->StopEventHandlerThread(); return NULL; } diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 6318b80a29e..5075b9835e9 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -3370,7 +3370,7 @@ CommandInterpreter::RunCommandInterpreter(bool auto_handle_events, } else { - m_debugger.ExecuteIOHanders(); + m_debugger.ExecuteIOHandlers(); if (auto_handle_events) m_debugger.StopEventHandlerThread(); |