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
Take note that there is no implementation of Drop for child processes, so if you do not ensure the Child has exited then it will continue to run, even after the Child handle to the child process has gone out of scope.
Calling wait (or other functions that wrap around it) will make the parent process wait until the child has actually exited before continuing.
#14467 solved this in 2014, but subsequent move to std::process lost that functionality. Is this recoverable?
Under Unix I can use CommandExt::exec(), but I'm aiming for code that will work under Windows as well.
The text was updated successfully, but these errors were encountered: