I have a multi-threaded process where a file is shared (read and written) by multiple threads. Is there any way a thread can lock one file segment so that other threads cannot access it?
I have tried fcntl(fd, F_SETLKW, &flock), but this lock only works for processes, not threads (a lock is shared between all threads in an process).
|
|
|||||||
|
migrated from unix.stackexchange.com Oct 20 '12 at 22:06
|
Yes - but not with the same mechanism. You'll have to use something like pthread mutexes, and keep track of the bookkeeping yourself. Possible outline for how to make this work
|
|||
|
|
|
No. The region-locking feature you're asking about has surprising semantics and it is not being further developed because it is controlled by POSIX. (In fact, it is Kirk McKusick's preferred example of what's wrong with POSIX.) If there is a non-POSIX byte-range lock facility in Linux, I can't find it. There is discussion of the problems of POSIX byte-range locking in a multithreaded world here: http://www.samba.org/samba/news/articles/low_point/tale_two_stds_os2.html. However, if you're concerned only with threads within one process, you can build your own region-locking using semaphores. For example:
Caution: the code compiles but I haven't tested it even a little. |
|||||||||
|
|
If you don't need file locks between different processes, avoid the file locks (which are one of the worst designed parts of the POSIX API) and just use mutexes or other shared memory concurrency primitives. |
|||
|
|
|
There are 2 ways you can do it:
|
|||
|
|