mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
Added sleep for non-posix, allow supported signals
This commit is contained in:
parent
196c3c779a
commit
3fd0c73e65
|
@ -16,13 +16,13 @@
|
|||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
#
|
||||
|
||||
import os, re, sys
|
||||
import os, re, sys, signal
|
||||
if os.name == "posix":
|
||||
import resource, fcntl, signal
|
||||
import resource, fcntl
|
||||
import subprocess
|
||||
from shutil import copyfile, rmtree
|
||||
from select import select
|
||||
from time import time, localtime
|
||||
from time import time, localtime, sleep
|
||||
|
||||
all_tasks_running = []
|
||||
|
||||
|
@ -34,8 +34,8 @@ def force_shutdown(signum, frame):
|
|||
|
||||
if os.name == "posix":
|
||||
signal.signal(signal.SIGHUP, force_shutdown)
|
||||
signal.signal(signal.SIGINT, force_shutdown)
|
||||
signal.signal(signal.SIGTERM, force_shutdown)
|
||||
signal.signal(signal.SIGINT, force_shutdown)
|
||||
signal.signal(signal.SIGTERM, force_shutdown)
|
||||
|
||||
def process_filename(filename):
|
||||
if filename.startswith("~/"):
|
||||
|
@ -247,6 +247,8 @@ class SbyJob:
|
|||
select(fds, [], [], 1.0) == ([], [], [])
|
||||
except InterruptedError:
|
||||
pass
|
||||
else:
|
||||
sleep(0.1)
|
||||
|
||||
for task in self.tasks_running:
|
||||
task.poll()
|
||||
|
|
Loading…
Reference in a new issue