std::atomic_notify_all
Min standard notice:
Header: <atomic>
Performs atomic notifying operations.
# Declarations
template< class T >
void atomic_notify_all( std::atomic<T>* object );
(since C++20)
template< class T >
void atomic_notify_all( volatile std::atomic<T>* object );
(since C++20)
# Parameters
object: pointer to the atomic object to notify
# Return value
(none)
# Notes
This form of change-detection is often more efficient than simple polling or pure spinlocks.
# Example
This section is incompleteReason: no example