From 3a5f35717fde787f4253520eedcfb03d7746bcab Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 12 Aug 2008 02:33:40 +0000 Subject: Disable "waiting for lock" messages when in background mode. Thanks to Thargor for reporting. svn path=/main/trunk/; revision=11400 --- pym/portage/locks.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'pym/portage/locks.py') diff --git a/pym/portage/locks.py b/pym/portage/locks.py index 000cd3495..4be13c11b 100644 --- a/pym/portage/locks.py +++ b/pym/portage/locks.py @@ -13,6 +13,10 @@ from portage.localization import _ HARDLINK_FD = -2 +# Used by emerge in order to disable the "waiting for lock" message +# so that it doesn't interfere with the status display. +_quiet = False + def lockdir(mydir): return lockfile(mydir,wantnewlockfile=1) def unlockdir(mylock): @@ -83,7 +87,11 @@ def lockfile(mypath, wantnewlockfile=0, unlinkfile=0, # resource temp unavailable; eg, someone beat us to the lock. if flags & os.O_NONBLOCK: raise TryAgain(mypath) - if waiting_msg is None: + + global _quiet + if _quiet: + pass + elif waiting_msg is None: if isinstance(mypath, int): print "waiting for lock on fd %i" % myfd else: -- cgit v1.2.3-1-g7c22