Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    
    # call LOCK_EX
    $_ = LOCK_EX;
    
  2. or download this
    use Fcntl qw(LOCK_EX);
    
    ...
    
    # call LOCK_EX
    $_ = LOCK_EX;