[llvm] [llvm][Support] Add support for executing a detached process (PR #81708)
Alexandre Ganea via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 14 05:09:12 PST 2024
================
@@ -39,7 +39,7 @@ int sys::ExecuteAndWait(StringRef Program, ArrayRef<StringRef> Args,
assert(Redirects.empty() || Redirects.size() == 3);
ProcessInfo PI;
if (Execute(PI, Program, Args, Env, Redirects, MemoryLimit, ErrMsg,
- AffinityMask)) {
+ AffinityMask, /*DetachProcess*/ false)) {
----------------
aganea wrote:
The format for in-line comments should include an equal sign (=) at the end, please see: https://llvm.org/docs/CodingStandards.html#comment-formatting
https://github.com/llvm/llvm-project/pull/81708
More information about the llvm-commits
mailing list