mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
Wait supports syscall instead of gens now
This commit is contained in:
parent
4fb5dd0421
commit
3a5d29848b
@ -82,7 +82,10 @@ class Wait():
|
||||
self.callback = gen
|
||||
|
||||
def _wait(self, gen):
|
||||
result = yield from gen
|
||||
if isinstance(gen, type_gen):
|
||||
result = yield from gen
|
||||
else:
|
||||
result = yield gen
|
||||
self._finish(gen, result)
|
||||
|
||||
def _finish(self, gen, result):
|
||||
@ -91,7 +94,7 @@ class Wait():
|
||||
schedule(self.callback, (gen, result))
|
||||
if self.exit_others:
|
||||
for g in self.scheduled:
|
||||
if g is not gen:
|
||||
if g is not gen and isinstance(g, type_gen):
|
||||
unschedule(g)
|
||||
unblock(g)
|
||||
g.close()
|
||||
|
Loading…
Reference in New Issue
Block a user