From: "Jay M" <[EMAIL PROTECTED]>
> I am attempting to modify a script that was coded back when perl 4.xx
> was the current version. This script accesses databases using DB_File
> and dbmopen(). After every dbmopen and dbmclose there is a flock().
> For example.
>
> dbmopen(%DB, $filename, 0777
Hi,
I am attempting to modify a script that was coded back when perl 4.xx was
the current version. This script accesses databases using DB_File and
dbmopen(). After every dbmopen and dbmclose there is a flock(). For
example.
dbmopen(%DB, $filename, 0777) || die "Error: $!\n";
flock(DB,2);
#i