summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-12-31 14:11:38 -0800
committerZac Medico <zmedico@gentoo.org>2012-12-31 14:11:38 -0800
commitb4529d628d7bf4fc39640c7b17f3d23f9c93e17d (patch)
treedd006151542e4786fbb6adc8e98f00b3d2afebde /pym/_emerge
parent46fca763f7d08171d5c08c1c5fd1f40ce340ba56 (diff)
downloadportage-b4529d628d7bf4fc39640c7b17f3d23f9c93e17d.tar.gz
portage-b4529d628d7bf4fc39640c7b17f3d23f9c93e17d.tar.bz2
portage-b4529d628d7bf4fc39640c7b17f3d23f9c93e17d.zip
AsynchronousTask: _async_wait is thread-safe
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/AsynchronousTask.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/AsynchronousTask.py b/pym/_emerge/AsynchronousTask.py
index b540575d8..da58261db 100644
--- a/pym/_emerge/AsynchronousTask.py
+++ b/pym/_emerge/AsynchronousTask.py
@@ -66,7 +66,7 @@ class AsynchronousTask(SlotObject):
convenient way to trigger an asynchronous call to self.wait()
(in order to notify exit listeners), avoiding excessive event
loop recursion (or stack overflow) that synchronous calling of
- exit listeners can cause.
+ exit listeners can cause. This method is thread-safe.
"""
self.scheduler.idle_add(self._async_wait_cb)