You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create pipe for exit monitoring (CLOEXEC to avoid other parallel processes inheriting it)
if (create_cloexec_pipe(exit_pipe) !=0) {
return-1;
}
for other native methods like try_wait_for_exit_cancellable, try_wait_for_exit, wait_for_exit_or_kill_on_timeout, remove the int exitPipeFd argument and when neither HAVE_KQUEUE or HAVE_PIDFD are defined, set errno = ENOTSUP; and return.
ProcessPlayground/Library/SafeChildProcessHandle.Unix.cs
Line 23 in f2220ca
ProcessPlayground/Library/SafeChildProcessHandle.Unix.cs
Line 25 in f2220ca
ProcessPlayground/Library/SafeChildProcessHandle.Unix.cs
Line 118 in f2220ca
spawn_processmethod:ProcessPlayground/Library/native/pal_process.c
Line 159 in dfcd508
ProcessPlayground/Library/native/pal_process.c
Lines 192 to 195 in dfcd508
try_wait_for_exit_cancellable,try_wait_for_exit,wait_for_exit_or_kill_on_timeout, remove theint exitPipeFdargument and when neitherHAVE_KQUEUEorHAVE_PIDFDare defined, seterrno = ENOTSUP;and return.