Tagged Questions
5
votes
3answers
2k views
Where is flock() for Perl on Windows?
I have a Perl script that I'd like to run on Windows, using either Strawberry Perl or ActivePerl; I don't care which. This script however, uses flock() calls, which does not seem to be included in ...
3
votes
0answers
57 views
Deadlock with flock, fork and terminating parent process
I have a pretty complicated python program. Internally it has a logging system that uses an exclusive (LOCK_EX) fcntl.flock to manage global locking. Effectively, whenever a log message is dumped, ...
0
votes
1answer
872 views
flock() question
I have a question about how flock() works, particularly in python. I have a module that opens a serial connection (via os.open()). I need to make this thread safe. It's easy enough making it thread ...