std::mutex::mutex
From cppreference.com
C++
Concurrency support library
|
|
std::mutex
Member functions | ||||
mutex::mutex | ||||
Locking | ||||
Native handle | ||||
constexpr mutex() noexcept; |
(1) | (since C++11) |
mutex( const mutex& ) = delete;
|
(2) | (since C++11) |
1) Constructs the mutex. The mutex is in unlocked state after the constructor completes.
2) Copy constructor is deleted.
Parameters
(none)
Notes
Because the default constructor is constexpr, static mutexes are initialized as part of static non-local initialization
See also
C documentation for mtx_init
|