Tagged Questions
3
votes
2answers
103 views
flock-ing a C++ ifstream on Linux (GCC 4.6)
context
I'm slowly writing a specialized web server application in C++ (using the C onion http server library and the JSONCPP library for JSON serialization, if that matters)., for a Linux system ...
2
votes
1answer
1k views
Why doesn't bash's flock with timeout exit if it fails to acquire the lock?
I am playing with using flock, a bash command for file locks to prevent two different instances of the code from running more than once.
I am using this testing code:
( ( flock -x 200 ; sleep 10 ; ...
2
votes
3answers
2k views
How do I use the linux flock command to prevent another root process from deleting a file?
I would like to prevent one of my root processes from deleting a certain file. So I came across the flock command, it seems to fit my need, but I didn't get its syntax.
If I only indicate a shared ...
1
vote
1answer
72 views
How to keep linux flock(2) from starving exclusive lock requests?
I am using flock(2) in linux to control access to resources in a homespun database, using both shared and exclusive locking modes. I find that if a shared lock is granted, then another process can ...
0
votes
2answers
40 views
How can I lock a directory in C on a linux machine
Will flock or lockf work on a directory?
I there another way to lock a directory in C on a linux machine?
0
votes
1answer
705 views
Does python's fcntl.flock function provide thread level locking of file access?
Python's fcnt module provides a method called [flock][1] to proved file locking. It's description reads:
Perform the lock operation op on file
descriptor fd (file objects providing
a fileno() ...
0
votes
1answer
199 views
flock locking order?
im using a simple test script from
http://www.tuxradar.com/practicalphp/8/11/0
like this
<?php
$fp = fopen("foo.txt", "w");
if (flock($fp, LOCK_EX)) {
print "Got lock!\n";
sleep(10);
...
0
votes
1answer
42 views
Global disk resource becomes unavailable
If I've got a global disk resource (mount point on an isilon file server) that multiple servers use to access a lock file. What is a good way to handle the situation if that global disk becomes ...