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

Added sleep for non-posix, allow supported signals

This commit is contained in:
Miodrag Milanovic 2020-01-15 08:09:11 +01:00
parent 196c3c779a
commit 3fd0c73e65

View file

@ -16,13 +16,13 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
# #
import os, re, sys import os, re, sys, signal
if os.name == "posix": if os.name == "posix":
import resource, fcntl, signal import resource, fcntl
import subprocess import subprocess
from shutil import copyfile, rmtree from shutil import copyfile, rmtree
from select import select from select import select
from time import time, localtime from time import time, localtime, sleep
all_tasks_running = [] all_tasks_running = []
@ -34,8 +34,8 @@ def force_shutdown(signum, frame):
if os.name == "posix": if os.name == "posix":
signal.signal(signal.SIGHUP, force_shutdown) signal.signal(signal.SIGHUP, force_shutdown)
signal.signal(signal.SIGINT, force_shutdown) signal.signal(signal.SIGINT, force_shutdown)
signal.signal(signal.SIGTERM, force_shutdown) signal.signal(signal.SIGTERM, force_shutdown)
def process_filename(filename): def process_filename(filename):
if filename.startswith("~/"): if filename.startswith("~/"):
@ -247,6 +247,8 @@ class SbyJob:
select(fds, [], [], 1.0) == ([], [], []) select(fds, [], [], 1.0) == ([], [], [])
except InterruptedError: except InterruptedError:
pass pass
else:
sleep(0.1)
for task in self.tasks_running: for task in self.tasks_running:
task.poll() task.poll()