X-Git-Url: https://git.p6c8.net/selfforum.git/blobdiff_plain/4efca15bb2136c3e226eb4e372776fad95a955c9..b9021e9738004ee35018d3ec16495b7dc1a287f0:/selfforum-cgi/shared/Lock/Exclusive.pm diff --git a/selfforum-cgi/shared/Lock/Exclusive.pm b/selfforum-cgi/shared/Lock/Exclusive.pm index d6243ec..009a469 100644 --- a/selfforum-cgi/shared/Lock/Exclusive.pm +++ b/selfforum-cgi/shared/Lock/Exclusive.pm @@ -4,7 +4,7 @@ package Lock::Exclusive; # # # File: shared/Lock/Exclusive.pm # # # -# Authors: Andre Malo , 2001-05-25 # +# Authors: André Malo # # # # Description: Locking and Filehandle class # # using O_EXCL and lock files # @@ -12,19 +12,19 @@ package Lock::Exclusive; ################################################################################ use strict; -use vars qw( - $VERSION -); - use Fcntl; ################################################################################ # # Version check # -$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +# last modified: +# $Date$ (GMT) +# by $Author$ +# +sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'} -### sub _simple_lock ########################################################### +### _simple_lock () ############################################################ # # simple file lock # (create lock file) @@ -44,7 +44,7 @@ sub _simple_lock { return; } -### sub _simple_unlock ######################################################### +### _simple_unlock () ########################################################## # # simple file unlock # (unlink lock file) @@ -64,7 +64,7 @@ sub _simple_unlock { return; } -### sub _reftime ############################################################### +### _reftime () ################################################################ # # determine reference time for violent unlock # @@ -85,7 +85,7 @@ sub _reftime { $time; } -### sub masterlocked ########################################################### +### masterlocked () ############################################################ # # check on master lock status of the file # @@ -95,7 +95,7 @@ sub _reftime { # sub masterlocked {-f shift -> masterlock} -### sub excl_announced ######################################################### +### excl_announced () ########################################################## # # check on exclusive lock announced status of the file # @@ -105,7 +105,7 @@ sub masterlocked {-f shift -> masterlock} # sub excl_announced {-f shift -> lockfile} -### sub exsh_announced ######################################################### +### exsh_announced () ########################################################## # # check on exclusive shared lock status of the file # @@ -115,6 +115,18 @@ sub excl_announced {-f shift -> lockfile} # sub exsh_announced {-f shift -> exshlock} +### purge () ################################################################### +# +# cover our traces after a file was removed +# +# Params: ~none~ +# +# Return: ~none~ +# +sub purge { + shift -> release; +} + # keep 'require' happy 1;