2007-12-14 22:25:45 +01:00
|
|
|
Lock file is a traditional means of synchronization among processes. In this
|
|
|
|
module it is implemented as an empty regular file exclusively locked using
|
|
|
|
fcntl.lockf. When it is to be released it is removed by default. However, if
|
|
|
|
all cooperating processes turn off the removal, they get a guaranteed order of
|
|
|
|
acquisitions and better scalability.
|
2007-06-06 15:28:20 +02:00
|
|
|
|
|
|
|
WWW: http://martin.horcicka.eu/python/lock_file/
|