Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59d32a75 authored by Yasuhiro Matsuda's avatar Yasuhiro Matsuda
Browse files

Fix perfboot.py to exit by Ctrl+C.

BUG: 22207911
Change-Id: I0cc41f834207efd2965483c8636bbc709e54358f
parent b10e562b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@ class WatchdogTimer(object):
        def notify_timeout():
            self._timedout = True
        self._timer = threading.Timer(timeout, notify_timeout)
        self._timer.daemon = True
        self._timer.start()

    def is_timedout(self):