I have created a driver for Linux that exists in the user space. I have created a memory map shared file that maps down to some custom HW registers.
The driver will do the usual read-modify-write and so I need some kind of lock to ensure synchronization.
The driver I am making can be used by many processes and of course threads and so I was wondering which is the best way to handle this.
Is it so that std::mutex would be enough to handle this kind of situation? I have read that std::mutex does not work for multi-process applications, is this true?
I cannot use the Boost libraries.
Assuming that you're running bespoke software in combination with the hardware, the easiest solution is just
flock
. A more fine-grained approach isfcntl(F_SET_LK)
but that's broken-by-design (Linux may release the lock when you close an unrelated file descriptor!).