<div dir="ltr">The last major piece of the Host layer I'd like to address is process launching and cleanup.  From looking over the code it seems we have the following different ways to launch a process:<div><br></div><div>MacOSX:</div><div>    * Applescript</div><div>    * XPC</div><div>    * posix_spawn</div><div><br></div><div>Other posix variants:</div><div>    * posix_spawn</div><div><br></div><div>Windows:</div><div>    * Native windows launcher</div><div><br></div><div><br></div><div>Among these, there are a couple of different ways to reap processes on exit and/or "join" on them.  These are:</div><div><br></div><div><div>MacOSX:</div><div>    * Applescript    [ No process reaping or monitoring occurs. ]</div><div>    * XPC               [ Uses MacOSX-specific dispatch library for monitoring ]</div><div>    * posix_spawn [ Uses MacOSX-specific dispatch library for monitoring ]</div><div><br></div><div>Other posix variants:</div><div>    * posix_spawn   [ Launches a background thread to monitor for process exit, join on the thread to join on the process ]</div><div><br></div><div>Windows:</div><div>    * Native windows launcher  [ WaitForSingleObject ]</div></div><div><br></div><div>A few questions: </div><div><br></div><div>1) Is Join() on a process a useful operation that people would be interested in seeing implemented for all platforms?</div><div><br></div><div>2) On Linux at least, if you don't waitpid() on a process you'll end up with zombies.  It seems this is true on MacOSX as well, because I see waitpid() in StartMonitoringChildProcess.  Is this not true for the Applescript launcher?  Why doesn't the Applescript launching code path call StartMonitoringChildProcess() anywhere?</div><div><br></div><div>3) Speaking of the Applescript launcher, what is it and what is it used for?</div><div><br></div><div><br></div><div>I'll probably have more questions as I wrap my head around this a little more.  Thanks</div></div>