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/posix/PipePosix.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/posix/PipePosix.cpp')
-rw-r--r-- | lldb/source/Host/posix/PipePosix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Host/posix/PipePosix.cpp b/lldb/source/Host/posix/PipePosix.cpp index c4706cd02f8..02838ec5124 100644 --- a/lldb/source/Host/posix/PipePosix.cpp +++ b/lldb/source/Host/posix/PipePosix.cpp @@ -183,7 +183,7 @@ PipePosix::CreateNew(llvm::StringRef name, bool child_process_inherit) } Error -PipePosix::OpenAsReaderWithTimeout(llvm::StringRef name, bool child_process_inherit, const std::chrono::microseconds &timeout) +PipePosix::OpenAsReader(llvm::StringRef name, bool child_process_inherit) { if (CanRead() || CanWrite()) return Error("Pipe is already opened"); |