commit | 386325a41576b505da4cca9b90e5f3154ca80cb8 | [log] [tgz] |
---|---|---|
author | Yasuhiro Matsuda <mazda@google.com> | Tue Aug 04 17:48:41 2015 +0900 |
committer | Yasuhiro Matsuda <mazda@google.com> | Tue Aug 04 17:48:41 2015 +0900 |
tree | d83d8d98a29001e566e8a034894bbacc2b264fd3 | |
parent | c5ba3abc6c8009d15ec9670b3a14d7c92774441b [diff] |
Fix perfboot.py to exit by Ctrl+C. BUG: 22207911 Change-Id: I0cc41f834207efd2965483c8636bbc709e54358f
diff --git a/init/perfboot.py b/init/perfboot.py index 2cd4699..c0693ab 100755 --- a/init/perfboot.py +++ b/init/perfboot.py
@@ -139,6 +139,7 @@ def notify_timeout(): self._timedout = True self._timer = threading.Timer(timeout, notify_timeout) + self._timer.daemon = True self._timer.start() def is_timedout(self):