Reference documentation for deal.II version 9.1.1
|
#include <deal.II/base/thread_management.h>
Inherits mutex.
Public Types | |
using | ScopedLock = std::lock_guard< std::mutex > |
Public Member Functions | |
Mutex ()=default | |
Mutex (const Mutex &) | |
Mutex & | operator= (const Mutex &) |
void | acquire () |
void | release () |
A class implementing a mutex. Mutexes are used to lock data structures to ensure that only a single thread of execution can access them at the same time.
This class is like std::mutex
in almost every regard and in fact is derived from std::mutex
. The only difference is that this class is copyable when std::mutex
is not. Indeed, when copied, the receiving object does not copy any state from the object being copied, i.e. an entirely new mutex is created. These semantics are consistent with the common use case if a mutex is used as a member variable to lock the other member variables of a class: in that case, the mutex of the copied-to object should only guard the members of the copied-to object, not the members of both the copied-to and copied-from object. Since at the time when the class is copied, the destination's member variable is not used yet, its corresponding mutex should also remain in its original state.
Definition at line 88 of file thread_management.h.
using Threads::Mutex::ScopedLock = std::lock_guard<std::mutex> |
This declaration introduces a scoped lock class. It is deprecated: use std::lock_guard<std::mutex>
or any of the other, related classes offered by C++ instead.
When you declare an object of this type, you have to pass it a mutex, which is locked in the constructor of this class and unlocked in the destructor. The lock is thus held during the entire lifetime of this object, i.e. until the end of the present scope, which explains where the name comes from. This pattern of using locks with mutexes follows the resource-acquisition-is-initialization pattern, and was used first for mutexes by Doug Schmidt. It has the advantage that locking a mutex this way is thread-safe, i.e. when an exception is thrown between the locking and unlocking point, the destructor makes sure that the mutex is unlocked; this would not automatically be the case when you lock and unlock the mutex "by hand", i.e. using Mutex::acquire() and Mutex::release().
Definition at line 111 of file thread_management.h.
|
default |
Default constructor.
|
inline |
Copy constructor. As discussed in this class's documentation, no state is copied from the object given as argument.
Definition at line 122 of file thread_management.h.
Copy operators. As discussed in this class's documentation, no state is copied from the object given as argument.
Definition at line 132 of file thread_management.h.
|
inline |
Acquire a mutex.
Definition at line 146 of file thread_management.h.
|
inline |
Release the mutex again.
Definition at line 159 of file thread_management.h.