diff options
author | Pavel Labath <labath@google.com> | 2017-06-27 10:33:14 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-06-27 10:33:14 +0000 |
commit | 4ccd99541bfc8f4f475dbacd1d17dc9817e92b1e (patch) | |
tree | 8fc9c06e04fc5e172b6b8d90a90fe45f97e60b50 /lldb/source/Host/common/IOObject.cpp | |
parent | 0e74a134f8578c0a3f8616bd3f2cde5a6131e07b (diff) | |
download | bcm5719-llvm-4ccd99541bfc8f4f475dbacd1d17dc9817e92b1e.tar.gz bcm5719-llvm-4ccd99541bfc8f4f475dbacd1d17dc9817e92b1e.zip |
Move Connection and IOObject interfaces to Utility module
Summary:
These interfaces have no dependencies, so it makes sense for them to be
in the lowest level modules, to make sure that other parts of the
codebase can use them without introducing loops.
The only exception here is the Connection::CreateDefaultConnection
method, which I've moved to Host, as it instantiates concrete
implementations, and that's where the implementations live.
Reviewers: jingham, zturner
Subscribers: lldb-commits, mgorny
Differential Revision: https://reviews.llvm.org/D34400
llvm-svn: 306391
Diffstat (limited to 'lldb/source/Host/common/IOObject.cpp')
-rw-r--r-- | lldb/source/Host/common/IOObject.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lldb/source/Host/common/IOObject.cpp b/lldb/source/Host/common/IOObject.cpp deleted file mode 100644 index 6f7de442be1..00000000000 --- a/lldb/source/Host/common/IOObject.cpp +++ /dev/null @@ -1,14 +0,0 @@ -//===-- IOObject.cpp --------------------------------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "lldb/Host/IOObject.h" - -using namespace lldb_private; - -const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1; |