From: Zac Medico Date: Wed, 3 Jan 2007 06:46:42 +0000 (-0000) Subject: When using the spawn's returnpid parameter, manually remove the returned pids from... X-Git-Tag: v2.1.2~168 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2ed475228df5ac93c4219c4b9497513d071d6c78;p=portage.git When using the spawn's returnpid parameter, manually remove the returned pids from portage_exec.spawned_pids. svn path=/main/trunk/; revision=5452 --- diff --git a/pym/portage.py b/pym/portage.py index 72eb3abdf..039681dcf 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -3303,6 +3303,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0, for k, v in izip(auxdbkeys, mybytes.splitlines()): dbkey[k] = v retval = os.waitpid(mypids[0], 0)[1] + portage_exec.spawned_pids.remove(mypids[0]) # If it got a signal, return the signal that was sent, but # shift in order to distinguish it from a return value. (just # like portage_exec.spawn() would do).