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
{{ message }}
This repository was archived by the owner on Nov 30, 2024. It is now read-only.
Detach bisect process to avoid making zombie process
If we do not `waitpid` or `detach` the bisect process become a zombie
process.
As mentionned in waitpid doc:
> As long as a zombie is not removed from the system via a wait, it
will consume a slot in the kernel process table, and if this table
fills, it will not be possible to create further processes.
Related:
- #2669
- https://andrykonchin.github.io/rails/2019/12/25/deadlock-in-rspec.html
0 commit comments