[Lldb-commits] [lldb] r316919 - Fix windows build broken in r316915

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 30 09:21:18 PDT 2017


Author: labath
Date: Mon Oct 30 09:21:18 2017
New Revision: 316919

URL: http://llvm.org/viewvc/llvm-project?rev=316919&view=rev
Log:
Fix windows build broken in r316915

I accidentally left a linux-specific include in generic code.

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=316919&r1=316918&r2=316919&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/MainLoop.cpp (original)
+++ lldb/trunk/source/Host/common/MainLoop.cpp Mon Oct 30 09:21:18 2017
@@ -18,7 +18,6 @@
 #include <csignal>
 #include <time.h>
 #include <vector>
-#include <sys/syscall.h>
 
 // Multiplexing is implemented using kqueue on systems that support it (BSD
 // variants including OSX). On linux we use ppoll, while android uses pselect




More information about the lldb-commits mailing list