Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/_emerge/
Date: Mon, 31 Dec 2012 22:12:25
Message-Id: 1356991898.b4529d628d7bf4fc39640c7b17f3d23f9c93e17d.zmedico@gentoo
1 commit: b4529d628d7bf4fc39640c7b17f3d23f9c93e17d
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 31 22:11:38 2012 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 31 22:11:38 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=b4529d62
7
8 AsynchronousTask: _async_wait is thread-safe
9
10 ---
11 pym/_emerge/AsynchronousTask.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/_emerge/AsynchronousTask.py b/pym/_emerge/AsynchronousTask.py
15 index b540575..da58261 100644
16 --- a/pym/_emerge/AsynchronousTask.py
17 +++ b/pym/_emerge/AsynchronousTask.py
18 @@ -66,7 +66,7 @@ class AsynchronousTask(SlotObject):
19 convenient way to trigger an asynchronous call to self.wait()
20 (in order to notify exit listeners), avoiding excessive event
21 loop recursion (or stack overflow) that synchronous calling of
22 - exit listeners can cause.
23 + exit listeners can cause. This method is thread-safe.
24 """
25 self.scheduler.idle_add(self._async_wait_cb)