Kaydet (Commit) 19806f4c authored tarafından Guido van Rossum's avatar Guido van Rossum

Module to lock open files using fcntl()

üst f1328527
import struct, fcntl, FCNTL
def writelock(f):
_lock(f, FCNTL.F_WRLCK)
def readlock(f):
_lock(f, FCNTL.F_RDLCK)
def unlock(f):
_lock(f, FCNTL.F_UNLCK)
def _lock(f, op):
dummy = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW,
struct.pack('2h8l', op,
0, 0, 0, 0, 0, 0, 0, 0, 0))
import struct, fcntl, FCNTL
def writelock(f):
_lock(f, FCNTL.F_WRLCK)
def readlock(f):
_lock(f, FCNTL.F_RDLCK)
def unlock(f):
_lock(f, FCNTL.F_UNLCK)
def _lock(f, op):
dummy = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW,
struct.pack('2h8l', op,
0, 0, 0, 0, 0, 0, 0, 0, 0))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment