home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / lib / python2.4 / lib-old / lockfile.py < prev    next >
Encoding:
Python Source  |  2006-08-25  |  341 b   |  16 lines

  1. import struct, 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.