[llvm-branch-commits] [lldb] r199440 - Start the IO handler thread if asked, not another event thread.

Greg Clayton gclayton at apple.com
Thu Jan 16 15:47:31 PST 2014


Author: gclayton
Date: Thu Jan 16 17:47:31 2014
New Revision: 199440

URL: http://llvm.org/viewvc/llvm-project?rev=199440&view=rev
Log:
Start the IO handler thread if asked, not another event thread.


Modified:
    lldb/branches/iohandler/source/Interpreter/CommandInterpreter.cpp

Modified: lldb/branches/iohandler/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/iohandler/source/Interpreter/CommandInterpreter.cpp?rev=199440&r1=199439&r2=199440&view=diff
==============================================================================
--- lldb/branches/iohandler/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/branches/iohandler/source/Interpreter/CommandInterpreter.cpp Thu Jan 16 17:47:31 2014
@@ -2998,7 +2998,7 @@ CommandInterpreter::RunCommandInterprete
     
     if (spawn_thread)
     {
-        m_debugger.StartEventHandlerThread();
+        m_debugger.StartIOHandlerThread();
     }
     else
     {





More information about the llvm-branch-commits mailing list