Subject: | net server prefork on win32 |
use for lock_file the modul File::Temp and not POSIX::tmpnam !
Then is prefork under win32 good.
example:
use File::Temp qw/ tempfile tempdir /;
my($fh, $lock_file) = tempfile();
....
lock_file => $lock_file,
...