author | Raphaël Gomès <rgomes@octobus.net> |
Fri, 08 May 2020 01:19:48 +0200 | |
branch | stable |
changeset 44812 | 79f6f856c53f |
parent 44811 | 5d309906ed0e |
child 44813 | af9970501021 |
--- a/mercurial/utils/procutil.py Mon Apr 27 01:39:22 2020 +0200 +++ b/mercurial/utils/procutil.py Fri May 08 01:19:48 2020 +0200 @@ -612,6 +612,7 @@ # We use a thread to make the overhead tiny. def _do_wait(): os.waitpid(pid, 0) + threading.Thread(target=_do_wait, daemon=True).start() return # Parent process