mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
Merge pull request #94 from nakengelhardt/fix_93
ignore race condition in killing already-terminated process
This commit is contained in:
commit
18ce85eb02
|
@ -118,7 +118,10 @@ class SbyTask:
|
||||||
if not self.silent:
|
if not self.silent:
|
||||||
self.job.log("{}: terminating process".format(self.info))
|
self.job.log("{}: terminating process".format(self.info))
|
||||||
if os.name == "posix":
|
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.p.terminate()
|
||||||
self.job.tasks_running.remove(self)
|
self.job.tasks_running.remove(self)
|
||||||
all_tasks_running.remove(self)
|
all_tasks_running.remove(self)
|
||||||
|
|
Loading…
Reference in a new issue