3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 06:04:06 +00:00

Merge pull request #94 from nakengelhardt/fix_93

ignore race condition in killing already-terminated process
This commit is contained in:
clairexen 2020-07-01 19:19:08 +02:00 committed by GitHub
commit 18ce85eb02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -118,7 +118,10 @@ class SbyTask:
if not self.silent:
self.job.log("{}: terminating process".format(self.info))
if os.name == "posix":
os.killpg(self.p.pid, signal.SIGTERM)
try:
os.killpg(self.p.pid, signal.SIGTERM)
except PermissionError:
pass
self.p.terminate()
self.job.tasks_running.remove(self)
all_tasks_running.remove(self)