[Lldb-commits] [lldb] [lldb][windows] add a Windows FifoFile implementation (PR #185894)
Charles Zablit via lldb-commits
lldb-commits at lists.llvm.org
Wed Mar 11 10:37:58 PDT 2026
================
@@ -20,11 +21,27 @@ namespace lldb_dap {
///
/// The file is destroyed when the destructor is invoked.
struct FifoFile {
- FifoFile(llvm::StringRef path);
+ FifoFile(llvm::StringRef path, lldb::pipe_t pipe = LLDB_INVALID_PIPE);
~FifoFile();
+ void Connect();
+
+ void WriteLine(std::string line);
----------------
charles-zablit wrote:
Fixed, thanks 👍
https://github.com/llvm/llvm-project/pull/185894
More information about the lldb-commits
mailing list