Adam Carson wrote:
> does anyone know what needs to be loaded to use flock()? I am on a win98
> box with IndigoPerl.
>
> Adam Carson
> MIS Department
> Berkeley County, SC
On regular linux perl you should use something like that to enable the use
of flock on a file :
use Fcntl ':flock'; # import LOCK_* constants
then something likethat to activate the lock
flock($handle, LOCK_EX);
I know that on ActiveState Perl the flock() is said to be supported (or
simulated...)
Bye,
Xavier
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]