From 59d32a7515c757d6171605bea0ef631d1837b365 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsuda Date: Tue, 4 Aug 2015 17:48:41 +0900 Subject: [PATCH] Fix perfboot.py to exit by Ctrl+C. BUG: 22207911 Change-Id: I0cc41f834207efd2965483c8636bbc709e54358f --- init/perfboot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/init/perfboot.py b/init/perfboot.py index 2cd469925..c0693abdc 100755 --- a/init/perfboot.py +++ b/init/perfboot.py @@ -139,6 +139,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):