Hi. I'm trying to access a file with multiple threads, trying to get synchronization with record lock(fcntl).
The problem is, fcntl doesn't lock the file.
I've tried: each threads to have own file descriptor/one file descriptor(global), checked the parameters of fcntl, but no reason or solution found.
Is there anything wrong with the function I've write? or maybe something to know when using fcntl in multi-threads?
fcntl implements process-level locking. Apparently, all your threads live in the same process, so there's no in-between locks (or, put another way: All threads within a process share the same locks).
The Linux man page says: