[Lldb-commits] [lldb] r230663 - Fix a typo Debugger::ExecuteIOHanders to Debugger::ExecuteIOHandlers.
Siva Chandra
sivachandra at google.com
Thu Feb 26 11:26:36 PST 2015
Author: sivachandra
Date: Thu Feb 26 13:26:36 2015
New Revision: 230663
URL: http://llvm.org/viewvc/llvm-project?rev=230663&view=rev
Log:
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
Modified:
lldb/trunk/include/lldb/Core/Debugger.h
lldb/trunk/source/Core/Debugger.cpp
lldb/trunk/source/Interpreter/CommandInterpreter.cpp
Modified: lldb/trunk/include/lldb/Core/Debugger.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/Debugger.h?rev=230663&r1=230662&r2=230663&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/Debugger.h (original)
+++ lldb/trunk/include/lldb/Core/Debugger.h Thu Feb 26 13:26:36 2015
@@ -360,7 +360,7 @@ public:
LoadPlugin (const FileSpec& spec, Error& error);
void
- ExecuteIOHanders();
+ ExecuteIOHandlers();
bool
IsForwardingEvents ();
Modified: lldb/trunk/source/Core/Debugger.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Debugger.cpp?rev=230663&r1=230662&r2=230663&view=diff
==============================================================================
--- lldb/trunk/source/Core/Debugger.cpp (original)
+++ lldb/trunk/source/Core/Debugger.cpp Thu Feb 26 13:26:36 2015
@@ -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;
}
Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=230663&r1=230662&r2=230663&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Thu Feb 26 13:26:36 2015
@@ -3370,7 +3370,7 @@ CommandInterpreter::RunCommandInterprete
}
else
{
- m_debugger.ExecuteIOHanders();
+ m_debugger.ExecuteIOHandlers();
if (auto_handle_events)
m_debugger.StopEventHandlerThread();
More information about the lldb-commits
mailing list