2001-05-10 12:33:31 -03:00
|
|
|
import struct, fcntl
|
1994-05-03 11:46:18 -03:00
|
|
|
|
|
|
|
def writelock(f):
|
2001-05-10 12:33:31 -03:00
|
|
|
_lock(f, fcntl.F_WRLCK)
|
1994-05-03 11:46:18 -03:00
|
|
|
|
|
|
|
def readlock(f):
|
2001-05-10 12:33:31 -03:00
|
|
|
_lock(f, fcntl.F_RDLCK)
|
1994-05-03 11:46:18 -03:00
|
|
|
|
|
|
|
def unlock(f):
|
2001-05-10 12:33:31 -03:00
|
|
|
_lock(f, fcntl.F_UNLCK)
|
1994-05-03 11:46:18 -03:00
|
|
|
|
|
|
|
def _lock(f, op):
|
2001-05-10 12:33:31 -03:00
|
|
|
dummy = fcntl.fcntl(f.fileno(), fcntl.F_SETLKW,
|
1994-05-03 11:46:18 -03:00
|
|
|
struct.pack('2h8l', op,
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 0))
|