Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

shlock(1) [opendarwin man page]

SHLOCK(1)						    BSD General Commands Manual 						 SHLOCK(1)

NAME
shlock -- create or verify a lock file for shell scripts SYNOPSIS
shlock -f lockfile [-p PID] [-u] [-v] DESCRIPTION
The shlock command can create or verify a lock file on behalf of a shell or other script program. When it attempts to create a lock file, if one already exists, shlock verifies that it is or is not valid. If valid, shlock will exit with a non-zero exit code. If invalid, shlock will remove the lock file, and create a new one. shlock uses the rename(2) system call to make the final target lock file, which is an atomic operation (i.e. "dot locking", so named for this mechanism's original use for locking system mailboxes). It puts the process ID ("PID") from the command line into the requested lock file. shlock verifies that an extant lock file is still valid by using kill(2) with a zero signal to check for the existence of the process that holds the lock. The -f argument with lockfile is always required. The -p option with PID is given when the program is to create a lock file; when absent, shlock will simply check for the validity of the lock file. The -u option causes shlock to read and write the PID as a binary pid_t, instead of as ASCII, to be compatible with the locks created by UUCP. The -v option causes shlock to be verbose about what it is doing. RETURN VALUES
A zero exit code indicates a valid lock file. EXAMPLES
BOURNE SHELL #!/bin/sh lckfile=/tmp/foo.lock if shlock -f ${lckfile} -p $$ then # do what required the lock rm ${lckfile} else echo Lock ${lckfile} already held by `cat ${lckfile}` fi C SHELL #!/bin/csh -f set lckfile=/tmp/foo.lock shlock -f ${lckfile} -p $$ if ($status == 0) then # do what required the lock rm ${lckfile} else echo Lock ${lckfile} already held by `cat ${lckfile}` endif The examples assume that the filesystem where the lock file is to be created is writeable by the user, and has space available. HISTORY
shlock was written for the first Network News Transfer Protocol (NNTP) software distribution, released in March 1986. The algorithm was sug- gested by Peter Honeyman, from work he did on HoneyDanBer UUCP. AUTHOR
Erik E. Fair <fair@clock.org> BUGS
Does not work on NFS or other network filesystem on different systems because the disparate systems have disjoint PID spaces. Cannot handle the case where a lock file was not deleted, the process that created it has exited, and the system has created a new process with the same PID as in the dead lock file. The lock file will appear to be valid even though the process is unrelated to the one that cre- ated the lock in the first place. Always remove your lock files after you're done. BSD
June 29, 1997 BSD

Check Out this Related Man Page

INN::Utils::Shlock(3pm) 				    InterNetNews Documentation					   INN::Utils::Shlock(3pm)

NAME
INN::Utils::Shlock - Wrapper around the shlock program DESCRIPTION
This Perl module wraps the shlock(1) program so that it can easily be used. Calling shlock is more portable than using flock(2) and its corresponding Perl function because this function does not work as expected on all existing systems. See the shlock(1) documentation for more information. Using INN::Utils::Shlock is straight-forward: use lib '<pathnews>/lib/perl'; use INN::Utils::Shlock; my $lockfile = "myprogram.LOCK"; # Acquire a lock. INN::Utils::Shlock::lock($lockfile); # Do whatever you want. The lock prevents concurrent accesses. # Unlock. INN::Utils::Shlock::unlock($lockfile); These two functions return 1 on success, 0 on failure. For example, the success of (un)locking can be checked as: INN::Utils::Shlock::lock($lockfile) or die "cannot create lock file"; or: if (! INN::Utils::Shlock::lock($lockfile, 4)) { die "giving up after 4 unsuccessful attempts to create lock file"; } Instead of calling "unlock(lockfile)", the "releaselocks()" function can be called. It removes any leftover locks, which is useful when several different locks are used. Another possible use is to call it in an END code block: END { # In case we bail out, while holding a lock. INN::Utils::Shlock::releaselocks(); } INTERFACE
lock(lockfile) Tries to create a lock file named lockfile. This function returns 1 on success, 0 on failure. lock(lockfile, tries) Tries to create a lock file named lockfile. If it fails, locking attempts are repeated once every 2 seconds for at most tries times (including the first unsuccessful attempt). This function returns 1 on success, 0 on failure. lock(lockfile, tries, delay) Tries to create a lock file named lockfile. If it fails, locking attempts are repeated once every delay seconds for at most tries times (including the first unsuccessful attempt). Note that "lock(lockfile)" is equivalent to "lock(lockfile, 1, 2)". This function returns 1 on success, 0 on failure. releaselocks() Removes all the lock files previously created by calling the "lock(lockfile)" function. This function returns the number of removed lock files. unlock(lockfile) Removes the file named lockfile. This function returns 1 on success, 0 on failure. HISTORY
Documentation written by Julien Elie for InterNetNews. $Id: Shlock.pm.in 9409 2012-05-28 18:43:20Z iulius $ SEE ALSO
perl(1), shlock(1). INN 2.5.3 2012-06-15 INN::Utils::Shlock(3pm)
Man Page