mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-22 14:28:07 +00:00
minor perf changes
This commit is contained in:
parent
53c73b3b5c
commit
b8968e7387
@ -47,12 +47,11 @@ def unlock(user_pin: str, failure_callback=None) -> bool:
|
||||
# lock, run the callback (ie for ui) and sleep for a quadratic delay
|
||||
_locked = True
|
||||
delay_ms = fails * fails * 1000
|
||||
if failure_callback:
|
||||
try:
|
||||
try:
|
||||
if failure_callback:
|
||||
failure_callback(delay_ms)
|
||||
except:
|
||||
pass
|
||||
utime.sleep_ms(delay_ms)
|
||||
finally:
|
||||
utime.sleep_ms(delay_ms)
|
||||
return False
|
||||
|
||||
|
||||
@ -158,6 +157,8 @@ def config_set_checked(key, value: bytes):
|
||||
utils.halt('config.set failed')
|
||||
|
||||
|
||||
# TODO: store ints as varints
|
||||
|
||||
def int_to_bytes(i: int) -> bytes:
|
||||
return ustruct.pack('>L', i) if i else bytes()
|
||||
|
||||
|
@ -14,9 +14,10 @@ def _unimport_func(func):
|
||||
try:
|
||||
ret = func(*args, **kwargs)
|
||||
finally:
|
||||
for to_remove in set(sys.modules) - mods:
|
||||
log.debug(__name__, 'unimport %s', to_remove)
|
||||
del sys.modules[to_remove]
|
||||
for mod in sys.modules:
|
||||
if mod not in mods:
|
||||
log.debug(__name__, 'unimport %s', mod)
|
||||
del sys.modules[mod]
|
||||
gc.collect()
|
||||
return ret
|
||||
return inner
|
||||
@ -28,9 +29,10 @@ def _unimport_genfunc(genfunc):
|
||||
try:
|
||||
ret = await genfunc(*args, **kwargs)
|
||||
finally:
|
||||
for to_remove in set(sys.modules) - mods:
|
||||
log.debug(__name__, 'unimport %s', to_remove)
|
||||
del sys.modules[to_remove]
|
||||
for mod in sys.modules:
|
||||
if mod not in mods:
|
||||
log.debug(__name__, 'unimport %s', mod)
|
||||
del sys.modules[mod]
|
||||
gc.collect()
|
||||
return ret
|
||||
return inner
|
||||
|
Loading…
Reference in New Issue
Block a user