Merge "Fix perfboot.py to exit by Ctrl+C."

This commit is contained in:
Yasuhiro Matsuda 2015-08-05 02:26:27 +00:00 committed by Gerrit Code Review
commit 1ada513f50

View file

@ -141,6 +141,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):