From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7A5B31381F3 for ; Fri, 30 Nov 2012 06:24:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E164E05AF; Fri, 30 Nov 2012 06:24:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D20CDE05ED for ; Fri, 30 Nov 2012 06:24:22 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CBC4B33D985 for ; Fri, 30 Nov 2012 06:24:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 4E132E5436 for ; Fri, 30 Nov 2012 06:24:20 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1354256646.373cc4a651596b86f77d7e9dbf1fbccd61895b54.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/AsynchronousLock.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 373cc4a651596b86f77d7e9dbf1fbccd61895b54 X-VCS-Branch: master Date: Fri, 30 Nov 2012 06:24:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 52dede1f-4cf0-4fe5-9e6d-57abe826da77 X-Archives-Hash: 1b6dd238f3ac02102e6bbc107f325194 commit: 373cc4a651596b86f77d7e9dbf1fbccd61895b54 Author: Zac Medico gentoo org> AuthorDate: Fri Nov 30 06:24:06 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Nov 30 06:24:06 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=373cc4a6 _LockThread: daemon = True --- pym/_emerge/AsynchronousLock.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/pym/_emerge/AsynchronousLock.py b/pym/_emerge/AsynchronousLock.py index 6e2d9bd..b4de779 100644 --- a/pym/_emerge/AsynchronousLock.py +++ b/pym/_emerge/AsynchronousLock.py @@ -123,6 +123,7 @@ class _LockThread(AbstractPollTask): if self._force_dummy: threading_mod = dummy_threading self._thread = threading_mod.Thread(target=self._run_lock) + self._thread.daemon = True self._thread.start() def _run_lock(self):