aboutsummaryrefslogtreecommitdiff
path: root/devel/py-lock_file
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 2.0Pav Lucistnik2007-12-143-12/+11
| | | | | | | | PR: ports/117464 Submitted by: Martin Horcicka <martin@horcicka.eu> (maintainer) Notes: svn path=/head/; revision=203645
* Lock files are used on Unix-like systems as a means of synchronization amongMartin Wilke2007-06-064-0/+35
processes. Only one process can hold a lock file. Other processes that want to acquire it have to wait until it is released by the holder. In this module the lock file is implemented as an empty regular file, exclusively locked using fcntl.flock. The file is removed when it is to be released. WWW: http://martin.horcicka.eu/python/lock_file/ PR: ports/113392 Submitted by: Martin Horcicka <martin at horcicka.eu> Notes: svn path=/head/; revision=192919