commit | ee6405527f11010e09a72c4eaf2c47bac170c49c | [log] [tgz] |
---|---|---|
author | Yasuhiro Matsuda <mazda@google.com> | Wed Aug 05 02:32:43 2015 +0000 |
committer | Android Git Automerger <android-git-automerger@android.com> | Wed Aug 05 02:32:43 2015 +0000 |
tree | a5a39745b5263b7ab979b7d3ef60cd9aa4055bde | |
parent | b57438c848e377873aefd89f68afb7650a6043e9 [diff] | |
parent | 1ada513f5042a13fff3fb64671d110defb6725fc [diff] |
am 1ada513f: Merge "Fix perfboot.py to exit by Ctrl+C." * commit '1ada513f5042a13fff3fb64671d110defb6725fc': 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):