diff options
author | Pavel Labath <pavel@labath.sk> | 2025-06-26 13:51:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-26 13:51:14 +0200 |
commit | b77114b723eb68563a0900846df5bd1b454edc2f (patch) | |
tree | 36ed38d9b16c9b517d056562d1d1780f233ed4dd /lldb/source/Interpreter/ScriptInterpreter.cpp | |
parent | f64d5df3c2524d92b3257ac50cfd941393159f98 (diff) | |
download | llvm-b77114b723eb68563a0900846df5bd1b454edc2f.zip llvm-b77114b723eb68563a0900846df5bd1b454edc2f.tar.gz llvm-b77114b723eb68563a0900846df5bd1b454edc2f.tar.bz2 |
[lldb] Remove child_process_inherit argument from Pipe (#145516)
It's not necessary on posix platforms as of #126935 and it's ignored on
windows as of #138896. For both platforms, we have a better way of
inheriting FDs/HANDLEs.
Diffstat (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/ScriptInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/ScriptInterpreter.cpp b/lldb/source/Interpreter/ScriptInterpreter.cpp index 63655cc5..ae913e6 100644 --- a/lldb/source/Interpreter/ScriptInterpreter.cpp +++ b/lldb/source/Interpreter/ScriptInterpreter.cpp @@ -220,7 +220,7 @@ ScriptInterpreterIORedirect::ScriptInterpreterIORedirect( m_input_file_sp = debugger.GetInputFileSP(); Pipe pipe; - Status pipe_result = pipe.CreateNew(false); + Status pipe_result = pipe.CreateNew(); #if defined(_WIN32) lldb::file_t read_file = pipe.GetReadNativeHandle(); pipe.ReleaseReadFileDescriptor(); |