Help for this page

Select Code to Download


  1. or download this
    my $got_lock;
    use Fcntl;   # to get constants for O_CREAT | O_EXCL | O_RDWR
    ...
        sleep 2;
    }
    diehtml("Lock error $!\n") unless $got_lock;
    
  2. or download this
    system ("lockfile -2 -r 5 $base_dir/.lock")  == 0
            or diehtml("Lock error: ", $? >> 8, "\n");
            # TODO stop stderr of system