std::experimental::atomic_shared_ptr::load
From cppreference.com
< cpp | experimental | atomic shared ptr
shared_ptr<T> load( std::memory_order order = std::memory_order_seq_cst ) const;
|
||
Atomically loads and returns the current value of the atomic_shared_ptr
. Memory is affected according to the value of order
.
order
must be one of std::memory_order_relaxed, std::memory_order_consume, std::memory_order_acquire or std::memory_order_seq_cst. Otherwise the behavior is undefined.
Contents |
[edit] Parameters
order | - | memory order constraints to enforce |
[edit] Remarks
All associated use_count increments are guaranteed to be performed as part of the atomic operation.
[edit] Return value
The current value of the atomic_shared_ptr
.
[edit] Exceptions
noexcept specification:
noexcept