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
Should use waitpid(-1, ...) directly to wait for the next exited child instead of going through the full list of known processes. Since this potentially breaks third party code that works with processes, this cannot be the default. See also #122 (comment)
The text was updated successfully, but these errors were encountered:
Since waitpid(-1, …) on it's own has the problem to interfere with processes started outside of vibe.d, we might think about moving all sub-processes into a distinct process group, which can be signaled and monitored separately from all others processes.
Should use
waitpid(-1, ...)
directly to wait for the next exited child instead of going through the full list of known processes. Since this potentially breaks third party code that works with processes, this cannot be the default. See also #122 (comment)The text was updated successfully, but these errors were encountered: