Subject: | Mojo::Server::Daemon::Prefork flock on Solaris |
Seeing as flock() isn't really the done thing on Solaris Perl is
emulating it using lockf, which means the lock file that is used needs
to be O_RDWR instead of O_RDONLY.
I'd imagine that this is true on any system that emulates flock with lockf.
It's a pretty simple change that doesn't appear to break anything, AFAICT.