summaryrefslogtreecommitdiff
path: root/include/lldb/Host/ConnectionFileDescriptor.h
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2014-10-06 21:22:36 +0000
committerZachary Turner <zturner@google.com>2014-10-06 21:22:36 +0000
commitfde1cb6ad341472cc0d7ae36a08115b938f2c38b (patch)
treef9394e67bdfea30d6ff50fddb81073bf940ebe9e /include/lldb/Host/ConnectionFileDescriptor.h
parent5c9925a57b87012a8c330f4f5bdc7106f7af5eb6 (diff)
Move ConnectionFileDescriptor to platform-specific Host directory.
As part of getting ConnectionFileDescriptor working on Windows, there is going to be alot of platform specific work to be done. As a result, the implementation is moving into Host. This patch performs the code move and fixes up call-sites appropriately. Reviewed by: Greg Clayton Differential Revision: http://reviews.llvm.org/D5548 git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@219143 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/lldb/Host/ConnectionFileDescriptor.h')
-rw-r--r--include/lldb/Host/ConnectionFileDescriptor.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/lldb/Host/ConnectionFileDescriptor.h b/include/lldb/Host/ConnectionFileDescriptor.h
new file mode 100644
index 000000000..0d486a34c
--- /dev/null
+++ b/include/lldb/Host/ConnectionFileDescriptor.h
@@ -0,0 +1,15 @@
+//===-- ConnectionFileDescriptor.h ------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef liblldb_Host_ConnectionFileDescriptor_h_
+#define liblldb_Host_ConnectionFileDescriptor_h_
+
+#include "lldb/Host/posix/ConnectionFileDescriptorPosix.h"
+
+#endif