std::shared_mutex in C++

In C++, std::shared_mutex is a synchronization primitive that lets several threads use a shared resource simultaneously for reading while guaranteeing exclusive writing access. It is helpful in situations where many threads need read-only access to the same data structure, but write operations aren’t often used.

Types of Locks in std::shared_mutex

The std::shared_mutex provides two types of locks:

  • Unique Lock: It is a unique lock that can only be acquired by a single thread at a time. This lock only allows a single thread to modify the shared resources while blocking the other threads. It is similar to the lock provided by the std::mutex.

Exclusive Lock in C++

  • Shared Lock: The shared lock is a non-exclusive lock that several threads can acquire at once. This gives multiple threads read-only access to the shared resource.

Shared Lock in C++

Note: Multiple threads can aquire the shared lock simultaneously but only one thread can aquire the exclusive lock at a time.

std::shared_mutex in C++

In C++, std::mutex is a mechanism that locks access to the shared resource when some other thread is working on it so that errors such as race conditions can be avoided and threads can be synchronized. But in some cases, several threads need to read the data from shared resources at the same time. Here, the std::shared_mutex comes into play. In this article, we will discuss the std::shared_mutex, its associated methods, and how it is different from the std::mutex in C++.

Similar Reads

std::shared_mutex in C++

In C++, std::shared_mutex is a synchronization primitive that lets several threads use a shared resource simultaneously for reading while guaranteeing exclusive writing access. It is helpful in situations where many threads need read-only access to the same data structure, but write operations aren’t often used....

Methods Associated with std::shared_mutex

The std::shared_mutex contains several member methods that are required to perform different operations. Some of the commonly used functions are:...

Example of std::shared_lock

C++ // C++ program to illustrate the use of shared_mutex #include #include #include #include using namespace std;    // creating a shared_mutex object shared_mutex mutx; int shared_data = 11;    // callable with shared lock void readData() {     shared_lock lock(mutx);     cout << "Thread " << this_thread::get_id() << ": ";      cout << shared_data << endl; }    // callable with unique_lock void writeData(int n) {     unique_lock lock(mutx);     shared_data = n;     cout << "Thread" << this_thread::get_id() << ": \n"; }    // driver code int main() {     thread t1(readData);     thread t2(writeData, 128);     thread t3(writeData, 10);     thread t4 (readData);            t1.join();     t2.join();     t3.join();     t4.join();     return 0; }...

std::shared_mutex vs std::mutex

...

Applications

Similar to std::mutex, std::shared_mutex is a synchronization primitive that prevents concurrent access to shared resources. Both have their own advantages and disadvantages....

Conclusion

Following are some main applications of std::shared_mutex:...

Contact Us