Pass waiting_msg into recursive lockfile() calls.
authorZac Medico <zmedico@gentoo.org>
Sat, 3 Mar 2007 21:42:46 +0000 (21:42 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 3 Mar 2007 21:42:46 +0000 (21:42 -0000)
svn path=/main/trunk/; revision=6156

pym/portage/locks.py

index cbf7ee4b5226fb0a375088b1bd36e9150aa7736c..167109432f3764af6dcaf5347d86908d8e72dc6b 100644 (file)
@@ -53,7 +53,8 @@ def lockfile(mypath, wantnewlockfile=0, unlinkfile=0, waiting_msg=None):
                                        os.chown(lockfilename,os.getuid(),portage_gid)
                        except OSError, e:
                                if e[0] == 2: # No such file or directory
-                                       return lockfile(mypath,wantnewlockfile,unlinkfile)
+                                       return lockfile(mypath, wantnewlockfile=wantnewlockfile,
+                                               unlinkfile=unlinkfile, waiting_msg=waiting_msg)
                                else:
                                        writemsg("Cannot chown a lockfile. This could cause inconvenience later.\n");
                        os.umask(old_mask)
@@ -110,7 +111,9 @@ def lockfile(mypath, wantnewlockfile=0, unlinkfile=0, waiting_msg=None):
                # The file was deleted on us... Keep trying to make one...
                os.close(myfd)
                writemsg("lockfile recurse\n",1)
-               lockfilename,myfd,unlinkfile,locking_method = lockfile(mypath,wantnewlockfile,unlinkfile)
+               lockfilename, myfd, unlinkfile, locking_method = lockfile(
+                       mypath, wantnewlockfile=wantnewlockfile, unlinkfile=unlinkfile,
+                       waiting_msg=waiting_msg)
 
        writemsg(str((lockfilename,myfd,unlinkfile))+"\n",1)
        return (lockfilename,myfd,unlinkfile,locking_method)