aboutsummaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorSiva Chandra <sivachandra@google.com>2015-02-26 19:26:36 +0000
committerSiva Chandra <sivachandra@google.com>2015-02-26 19:26:36 +0000
commit9aaab55800ebcfd30d4474a8b16bbdda9680cd98 (patch)
tree50709cc588f8948e7c38f11714e38ba3503a14ac /lldb
parent1c915782b950be68cbbfccfc6bd253181f3a6b8f (diff)
downloadllvm-9aaab55800ebcfd30d4474a8b16bbdda9680cd98.zip
llvm-9aaab55800ebcfd30d4474a8b16bbdda9680cd98.tar.gz
llvm-9aaab55800ebcfd30d4474a8b16bbdda9680cd98.tar.bz2
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')
-rw-r--r--lldb/include/lldb/Core/Debugger.h2
-rw-r--r--lldb/source/Core/Debugger.cpp4
-rw-r--r--lldb/source/Interpreter/CommandInterpreter.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/lldb/include/lldb/Core/Debugger.h b/lldb/include/lldb/Core/Debugger.h
index 9a3f973..41ab640 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 c68b89b..7b3cffb 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 6318b80..5075b98 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();