summaryrefslogtreecommitdiffstats
path: root/lldb/source/Host/common/PipeBase.cpp
diff options
context:
space:
mode:
authorOleksiy Vyalov <ovyalov@google.com>2015-01-14 01:31:27 +0000
committerOleksiy Vyalov <ovyalov@google.com>2015-01-14 01:31:27 +0000
commit477182922547410b2e4d83110120a15b912928b9 (patch)
tree9220814b7c90fa45c1c81497d818da6adf22dc6b /lldb/source/Host/common/PipeBase.cpp
parent63a951eb1c59a1f4e4a66278ce1a322867700109 (diff)
downloadbcm5719-llvm-477182922547410b2e4d83110120a15b912928b9.tar.gz
bcm5719-llvm-477182922547410b2e4d83110120a15b912928b9.zip
Extend PipePosix with support for named pipes/timeout-based IO and integrate it with GDBRemoteCommunication / lldb-gdbserver - include reviews fixes.
http://reviews.llvm.org/D6954 llvm-svn: 225923
Diffstat (limited to 'lldb/source/Host/common/PipeBase.cpp')
-rw-r--r--lldb/source/Host/common/PipeBase.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lldb/source/Host/common/PipeBase.cpp b/lldb/source/Host/common/PipeBase.cpp
index 3b1932c5419..a9d6e6f46c8 100644
--- a/lldb/source/Host/common/PipeBase.cpp
+++ b/lldb/source/Host/common/PipeBase.cpp
@@ -15,12 +15,6 @@ using namespace lldb_private;
PipeBase::~PipeBase() = default;
Error
-PipeBase::OpenAsReader(llvm::StringRef name, bool child_process_inherit)
-{
- return OpenAsReaderWithTimeout(name, child_process_inherit, std::chrono::microseconds::zero());
-}
-
-Error
PipeBase::OpenAsWriter(llvm::StringRef name, bool child_process_inherit)
{
return OpenAsWriterWithTimeout(name, child_process_inherit, std::chrono::microseconds::zero());
OpenPOWER on IntegriCloud