diff options
| author | Oleksiy Vyalov <ovyalov@google.com> | 2015-01-14 01:31:27 +0000 |
|---|---|---|
| committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-01-14 01:31:27 +0000 |
| commit | 477182922547410b2e4d83110120a15b912928b9 (patch) | |
| tree | 9220814b7c90fa45c1c81497d818da6adf22dc6b /lldb/source/Host/common/PipeBase.cpp | |
| parent | 63a951eb1c59a1f4e4a66278ce1a322867700109 (diff) | |
| download | bcm5719-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.cpp | 6 |
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()); |

