commit | 24baa3485b1bf917affe8919a23291186f63a5dd | [log] [tgz] |
---|---|---|
author | Yasuhiro Matsuda <mazda@google.com> | Wed Aug 05 02:26:27 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Aug 05 02:26:27 2015 +0000 |
tree | a5a39745b5263b7ab979b7d3ef60cd9aa4055bde | |
parent | a940f8ac277a7d3f42ddfb88f2bcdc5e17635d35 [diff] | |
parent | 386325a41576b505da4cca9b90e5f3154ca80cb8 [diff] |
Merge "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):