home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / !!!python!!! / BeOpen-Python-2.0.exe / LOCKFILE.PY < prev    next >
Encoding:
Text File  |  2000-09-28  |  303 b   |  16 lines

  1. import struct, fcntl, FCNTL
  2.  
  3. def writelock(f):
  4.     _lock(f, FCNTL.F_WRLCK)
  5.  
  6. def readlock(f):
  7.     _lock(f, FCNTL.F_RDLCK)
  8.  
  9. def unlock(f):
  10.     _lock(f, FCNTL.F_UNLCK)
  11.  
  12. def _lock(f, op):
  13.     dummy = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW,
  14.                 struct.pack('2h8l', op,
  15.                     0, 0, 0, 0, 0, 0, 0, 0, 0))
  16.