Obsolete Members for QAtomicInteger
The following members of class QAtomicInteger are obsolete. They are provided to keep old source code working. We strongly advise against using them in new code.
Public Functions
Member Function Documentation
T QAtomicInteger::load() const
This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Use loadRelaxed() instead.
Atomically loads the value of this QAtomicInteger using relaxed memory ordering. The value is not modified in any way, but note that there's no guarantee that it remains so.
See also storeRelaxed() and loadAcquire().
void QAtomicInteger::store(T newValue)
This function is obsolete. It is provided to keep old source code working. We strongly advise against using it in new code.
Use storeRelaxed() instead.
Atomically stores the newValue value into this atomic type, using relaxed memory ordering.
See also storeRelease() and loadRelaxed().