atomic_is_lock_free-Funktion
Gibt an, ob atomare Vorgänge auf einem atomic-Objekt sperrenfrei sind.
template <class Ty>
inline bool atomic_is_lock_free(
const volatile atomic<Ty> *Atom
) _NOEXCEPT;
template <class Ty>
inline bool atomic_is_lock_free(
const atomic<Ty> *Atom
) _NOEXCEPT;
Parameter
- Atom
Ein Zeiger auf einen atomic-Objekt, das einen Wert des Typs Ty speichert.
Rückgabewert
true, wenn atomare Vorgänge auf Atom sperrenfrei sind; andernfalls false.
Hinweise
Ein unteilbarer Typ ist wenn keine atomaren Vorgänge auf Sperren dieser Typen sperrenfrei.
Anforderungen
Header: atomar
Namespace: std