[Lldb-commits] [PATCH] D13022: Use fcntl.h to retrieve the O_CREAT and O_RDRW constants.
Vasileios Kalintiris via lldb-commits
lldb-commits at lists.llvm.org
Tue Sep 22 02:48:22 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL248255: Use fcntl.h to retrieve the O_CREAT and O_RDWR constants. (authored by vkalintiris).
Changed prior to commit:
http://reviews.llvm.org/D13022?vs=35258&id=35352#toc
Repository:
rL LLVM
http://reviews.llvm.org/D13022
Files:
lldb/trunk/source/Core/ConnectionSharedMemory.cpp
Index: lldb/trunk/source/Core/ConnectionSharedMemory.cpp
===================================================================
--- lldb/trunk/source/Core/ConnectionSharedMemory.cpp
+++ lldb/trunk/source/Core/ConnectionSharedMemory.cpp
@@ -16,10 +16,10 @@
#ifdef _WIN32
#include "lldb/Host/windows/windows.h"
#else
-#include <sys/file.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
+#include <fcntl.h>
#endif
// C++ Includes
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13022.35352.patch
Type: text/x-patch
Size: 455 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150922/116f7604/attachment.bin>
More information about the lldb-commits
mailing list