From b77114b723eb68563a0900846df5bd1b454edc2f Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Thu, 26 Jun 2025 13:51:14 +0200 Subject: [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. --- lldb/source/Interpreter/ScriptInterpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Interpreter/ScriptInterpreter.cpp') 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(); -- cgit v1.1