[Lldb-commits] [lldb] r300638 - Buildbot wack-a-mole!

Chris Bieneman via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 18 18:15:18 PDT 2017


Author: cbieneman
Date: Tue Apr 18 20:15:17 2017
New Revision: 300638

URL: http://llvm.org/viewvc/llvm-project?rev=300638&view=rev
Log:
Buildbot wack-a-mole!

This should fix the netbsd bot I just broke.

Modified:
    lldb/trunk/source/Host/common/MainLoop.cpp

Modified: lldb/trunk/source/Host/common/MainLoop.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/MainLoop.cpp?rev=300638&r1=300637&r2=300638&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/MainLoop.cpp (original)
+++ lldb/trunk/source/Host/common/MainLoop.cpp Tue Apr 18 20:15:17 2017
@@ -141,7 +141,7 @@ void MainLoop::UnregisterReadObject(IOOb
 
 void MainLoop::UnregisterSignal(int signo) {
 #if SIGNAL_POLLING_UNSUPPORTED
-  error.SetErrorString("Signal polling is not supported on this platform.");
+  Error("Signal polling is not supported on this platform.");
   return nullptr;
 #else
   // We undo the actions of RegisterSignal on a best-effort basis.




More information about the lldb-commits mailing list