Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update libxev to fix zombie processes on macOS
Fixes #4554 xev.Process.wait is documented as being equivalent to calling `waitpid`, i.e. including reaping the process. On Linux, it does this automatically by using pidfd and the `waitid` syscall. On macOS, it wasn't doing this. This commit updates libxev to include a fix that explicitly calls `waitpid` for kqueue.
- Loading branch information