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

ignore race condition in killing already-terminated process

This commit is contained in:
N. Engelhardt 2020-06-16 12:41:26 +02:00
parent 13fef4a710
commit 25502e16ef

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)