Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

std::mutex in shared memory not working

I have a scenario where the shared memory area is exclusively accessed by two different processes. When I launch the processes, the first process successfully locks the mutex, updates the memory and unlock the mutex. But I observe that when the second process try to lock it, it is still in deadlock state, waiting for mutex to unlock.

Time difference between the mutex lock is 10s for first and second process.

I am using the std::mutex. Please tell me what I am missing.

like image 869
klekle Avatar asked Oct 10 '17 09:10

klekle


People also ask

What is a shared mutex in C++?

class shared_mutex; (since C++17) The shared_mutex class is a synchronization primitive that can be used to protect shared data from being simultaneously accessed by multiple threads. In contrast to other mutex types which facilitate exclusive access, a shared_mutex has two levels of access:

How does mutex work in Java?

The mutex class is a synchronization primitive that can be used to protect shared data from being simultaneously accessed by multiple threads. A calling thread owns a mutex from the time that it successfully calls either lock or try_lock until it calls unlock .

What happens when a thread owns a mutex?

When a thread owns a mutex, all other threads will block (for calls to lock) or receive a false return value (for try_lock) if they attempt to claim ownership of the mutex . A calling thread must not own the mutex prior to calling lock or try_lock .

Is it possible to synchronize mutex between two processes?

You have a bigger problem though... A mutex is a threading construct -- it is for synchronizing data access between threads (which are part of a single process), not between separate processes. You should read up more on IPC (inter-process communication) to find an appropriate mechanism for synchronizing data access between separate processes.


3 Answers

Despite the citations that others have made to documentation, the classes std::mutex and std::shared_mutex actually do work across processes when used in shared memory on Linux. I've checked with GCC 8.3.1 and Clang 6.0.1.

Standard C++ implementations of these on Linux use pthreads. The pthreads provision of PTHREAD_PROCESS_SHARED and PTHREAD_PROCESS_PRIVATE as attributes for pthread_mutex_t and pthread_rwlock_t are abstracted out and defaulted by std::mutex and std::shared_mutex. Even though POSIX documentation says that the default is PRIVATE, a pthread_mutex_t and pthread_rwlock_t allocated in shared memory will block competing processes when locked. This is because the actual implementation of pthreads on Linux uses futexes, and they are intended for use in shared memory even in cases where mapped addresses may differ across processes.

It's possible that the PTHREADS_PROCESS_PRIVATE behaviour is actually more difficult to implement given the strategy of using futexes to implement mutexes, and as such, is silently not implemented.

If you did want your mutexes to be process-private, just avoid putting them in shared memory. On the other hand if you do want to share them, be cautious that this standards discrepancy could be subject to change.

For reliability, use Boost Interprocess.

like image 94
ChalkTalk Avatar answered Oct 19 '22 00:10

ChalkTalk


An std::mutex instance is only scoped to a single process; it is not capable of interprocess synchronization/concurrency. It is only capable of synchronizing child threads within a parent process.

Look to use Boost or an interprocess synchronization library instead.

like image 34
Scott Mudge Avatar answered Oct 19 '22 00:10

Scott Mudge


std::mutex does not support interprocess operation but pthread library has interprocess mutex that you can use. Example here.

like image 22
Çağrı Uslu Avatar answered Oct 19 '22 01:10

Çağrı Uslu