commit | ad90016e024cb0ac26fd74436d8390a44b34247a | [log] [tgz] |
---|---|---|
author | Yasuhiro Matsuda <mazda@google.com> | Wed Aug 05 02:41:02 2015 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Wed Aug 05 02:41:02 2015 +0000 |
tree | 71c5a72f2636f4b946f185a96d70bedc87cd1ada | |
parent | 1e4535062de8050185b1721bb9c2ff911866584a [diff] | |
parent | 137edd9b873e85b69c96979d73ca94c41fe23ce2 [diff] |
am ee640552: am 1ada513f: Merge "Fix perfboot.py to exit by Ctrl+C." * commit 'ee6405527f11010e09a72c4eaf2c47bac170c49c': Fix perfboot.py to exit by Ctrl+C.
diff --git a/init/perfboot.py b/init/perfboot.py index 8f2096a..3d4940c 100755 --- a/init/perfboot.py +++ b/init/perfboot.py
@@ -141,6 +141,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):