[Lldb-commits] [PATCH] Fix a typo Debugger::ExecuteIOHanders to Debugger::ExecuteIOHandlers.
Siva Chandra
sivachandra at google.com
Wed Feb 25 18:29:16 PST 2015
Hi clayborg, zturner,
http://reviews.llvm.org/D7894
Files:
include/lldb/Core/Debugger.h
source/Core/Debugger.cpp
source/Interpreter/CommandInterpreter.cpp
Index: include/lldb/Core/Debugger.h
===================================================================
--- include/lldb/Core/Debugger.h
+++ include/lldb/Core/Debugger.h
@@ -360,7 +360,7 @@
LoadPlugin (const FileSpec& spec, Error& error);
void
- ExecuteIOHanders();
+ ExecuteIOHandlers();
bool
IsForwardingEvents ();
Index: source/Core/Debugger.cpp
===================================================================
--- source/Core/Debugger.cpp
+++ source/Core/Debugger.cpp
@@ -902,7 +902,7 @@
}
void
-Debugger::ExecuteIOHanders()
+Debugger::ExecuteIOHandlers()
{
while (1)
@@ -1743,7 +1743,7 @@
Debugger::IOHandlerThread (lldb::thread_arg_t arg)
{
Debugger *debugger = (Debugger *)arg;
- debugger->ExecuteIOHanders();
+ debugger->ExecuteIOHandlers();
debugger->StopEventHandlerThread();
return NULL;
}
Index: source/Interpreter/CommandInterpreter.cpp
===================================================================
--- source/Interpreter/CommandInterpreter.cpp
+++ source/Interpreter/CommandInterpreter.cpp
@@ -3370,7 +3370,7 @@
}
else
{
- m_debugger.ExecuteIOHanders();
+ m_debugger.ExecuteIOHandlers();
if (auto_handle_events)
m_debugger.StopEventHandlerThread();
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D7894.20724.patch
Type: text/x-patch
Size: 1307 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150226/3560b903/attachment.bin>
More information about the lldb-commits
mailing list