Go to the source code of
this file.
Define Documentation
| #define
Q_ATOMIC_INT_REFERENCE_COUNTING_IS_ALWAYS_NATIVE |
| #define
Q_ATOMIC_INT_REFERENCE_COUNTING_IS_WAIT_FREE |
| #define
Q_ATOMIC_INT_TEST_AND_SET_IS_ALWAYS_NATIVE |
| #define
Q_ATOMIC_INT_TEST_AND_SET_IS_WAIT_FREE |
| #define
Q_ATOMIC_INT_FETCH_AND_STORE_IS_ALWAYS_NATIVE |
| #define
Q_ATOMIC_INT_FETCH_AND_STORE_IS_WAIT_FREE |
| #define
Q_ATOMIC_INT_FETCH_AND_ADD_IS_ALWAYS_NATIVE |
| #define
Q_ATOMIC_INT_FETCH_AND_ADD_IS_WAIT_FREE |
| #define
Q_ATOMIC_POINTER_TEST_AND_SET_IS_ALWAYS_NATIVE |
| #define
Q_ATOMIC_POINTER_TEST_AND_SET_IS_WAIT_FREE |
| #define
Q_ATOMIC_POINTER_FETCH_AND_STORE_IS_ALWAYS_NATIVE |
| #define
Q_ATOMIC_POINTER_FETCH_AND_STORE_IS_WAIT_FREE |
| #define
Q_ATOMIC_POINTER_FETCH_AND_ADD_IS_ALWAYS_NATIVE |
| #define
Q_ATOMIC_POINTER_FETCH_AND_ADD_IS_WAIT_FREE |
Function Documentation
| Q_CORE_EXPORT int
q_atomic_test_and_set_int |
( |
volatile int * |
ptr, |
|
|
int |
expected, |
|
|
int |
newval |
|
) |
|
|
| Q_CORE_EXPORT int
q_atomic_test_and_set_ptr |
( |
volatile void * |
ptr, |
|
|
void * |
expected, |
|
|
void * |
newval |
|
) |
|
|
| Q_CORE_EXPORT int q_atomic_increment |
( |
volatile int * |
ptr |
) |
|
| Q_CORE_EXPORT int q_atomic_decrement |
( |
volatile int * |
ptr |
) |
|
| Q_CORE_EXPORT int q_atomic_set_int |
( |
volatile int * |
ptr, |
|
|
int |
newval |
|
) |
|
|
| Q_CORE_EXPORT void* q_atomic_set_ptr |
( |
volatile void * |
ptr, |
|
|
void * |
newval |
|
) |
|
|
| Q_CORE_EXPORT int
q_atomic_fetch_and_add_int |
( |
volatile int * |
ptr, |
|
|
int |
value |
|
) |
|
|
| Q_CORE_EXPORT void*
q_atomic_fetch_and_add_ptr |
( |
volatile void * |
ptr, |
|
|
int |
value |
|
) |
|
|