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

Commit ee640552 authored by Yasuhiro Matsuda's avatar Yasuhiro Matsuda Committed by Android Git Automerger
Browse files

am 1ada513f: Merge "Fix perfboot.py to exit by Ctrl+C."

* commit '1ada513f':
  Fix perfboot.py to exit by Ctrl+C.
parents b57438c8 1ada513f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -141,6 +141,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):