##// END OF EJS Templates
Fixed diff generation in hgeditor if a list of files is given to hg commit....
Fixed diff generation in hgeditor if a list of files is given to hg commit. -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fixed diff generation in hgeditor if a list of files is given to hg commit. manifest hash: 3eadc3637963778a35000fa75f229eb6b44ffc3d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFCvoRsW7P1GVgWeRoRArNpAJ4p5NQBkv1X+eHwWU7+aqoGkcqwlACgklk2 e/vr9qiIPcOVrbYViapZD9E= =3fRb -----END PGP SIGNATURE-----

File last commit:

r429:688d03d6 merge default
r475:ab53998b default
Show More
lock.py
47 lines | 1.0 KiB | text/x-python | PythonLexer
mpm@selenic.com
Simply repository locking...
r161 # lock.py - simple locking scheme for mercurial
#
# Copyright 2005 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
import os, time
mpm@selenic.com
[PATCH] Enables lock work under the other 'OS'...
r422 import util
mpm@selenic.com
Simply repository locking...
r161
class LockHeld(Exception):
pass
class lock:
def __init__(self, file, wait = 1):
self.f = file
self.held = 0
self.wait = wait
self.lock()
def __del__(self):
self.release()
def lock(self):
while 1:
try:
self.trylock()
return 1
except LockHeld, inst:
if self.wait:
time.sleep(1)
continue
raise inst
def trylock(self):
pid = os.getpid()
try:
mpm@selenic.com
[PATCH] Enables lock work under the other 'OS'...
r422 util.makelock(str(pid), self.f)
mpm@selenic.com
Simply repository locking...
r161 self.held = 1
except:
mpm@selenic.com
[PATCH] Enables lock work under the other 'OS'...
r422 raise LockHeld(util.readlock(self.f))
mpm@selenic.com
Simply repository locking...
r161
def release(self):
if self.held:
self.held = 0
os.unlink(self.f)