diff options
author | Siva Chandra <sivachandra@google.com> | 2015-02-26 19:26:36 +0000 |
---|---|---|
committer | Siva Chandra <sivachandra@google.com> | 2015-02-26 19:26:36 +0000 |
commit | 9aaab55800ebcfd30d4474a8b16bbdda9680cd98 (patch) | |
tree | 50709cc588f8948e7c38f11714e38ba3503a14ac /lldb/source | |
parent | 1c915782b950be68cbbfccfc6bd253181f3a6b8f (diff) | |
download | bcm5719-llvm-9aaab55800ebcfd30d4474a8b16bbdda9680cd98.tar.gz bcm5719-llvm-9aaab55800ebcfd30d4474a8b16bbdda9680cd98.zip |
Fix a typo Debugger::ExecuteIOHanders to Debugger::ExecuteIOHandlers.
Test Plan: Build LLDB.
Reviewers: zturner, vharron, clayborg
Reviewed By: vharron, clayborg
Subscribers: jingham, lldb-commits
Differential Revision: http://reviews.llvm.org/D7894
llvm-svn: 230663
Diffstat (limited to 'lldb/source')
-rw-r--r-- | lldb/source/Core/Debugger.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
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(); |