Entry
When I use flock I get the following error "flock() unimplemented on this platform at ADMIN.CGI line 203." can you help?
Aug 21st, 2001 14:33
Bruce Christensen, R S I,
flock() is a function on Unix and its variants that a program uses to
"lock" a file for exclusive access. This is often necessary when
multiple programs need to access a file at the same time, and forces
them to "wait their turn".
The problem that you're experiencing is probably caused because you're
running Perl on Windows, and the Windows operating system doesn't offer
file locking services.