Tagged Questions
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
871 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 ...