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:
parent
13fef4a710
commit
25502e16ef
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue