|
VSF Documented
|
Go to the source code of this file.
Data Structures | |
| struct | atomic_flag |
Macros | |
| #define | ATOMIC_VAR_INIT(__VALUE) |
| #define | atomic_init(object, value) |
| #define | atomic_store_explicit(object, desired, order) |
| #define | atomic_store(object, desired) |
| #define | atomic_load_explicit(object, order) |
| #define | atomic_load(object) |
| #define | atomic_exchange_explicit(object, desired, order) |
| #define | atomic_exchange(object, desired) |
| #define | atomic_compare_exchange_strong_explicit(object, expected, desired, order_success, order_fail) |
| #define | atomic_compare_exchange_strong(object, expected, desired) |
| #define | atomic_compare_exchange_weak_explicit(object, expected, desired, order_success, order_fail) |
| #define | atomic_compare_exchange_weak(object, expected, desired) |
| #define | atomic_fetch_add_explicit(object, operand, order) |
| #define | atomic_fetch_add(object, operand) |
| #define | atomic_fetch_sub_explicit(object, operand, order) |
| #define | atomic_fetch_sub(object, operand) |
| #define | atomic_fetch_or_explicit(object, operand, order) |
| #define | atomic_fetch_or(object, operand) |
| #define | atomic_fetch_xor_explicit(object, operand, order) |
| #define | atomic_fetch_xor(object, operand) |
| #define | atomic_fetch_and_explicit(object, operand, order) |
| #define | atomic_fetch_and(object, operand) |
| #define | ATOMIC_FLAG_INIT { 0 } |
| #define | atomic_flag_test_and_set_explicit(__ptr, __mode) |
| #define | atomic_flag_test_and_set(__ptr) |
| #define | atomic_flag_clear_explicit(__ptr, __mode) |
| #define | atomic_flag_clear(__ptr) |
Enumerations | |
| enum | memory_order { memory_order_relaxed , memory_order_consume , memory_order_acquire , memory_order_release , memory_order_acq_rel , memory_order_seq_cst } |
| #define ATOMIC_VAR_INIT | ( | __VALUE | ) |
| #define atomic_init | ( | object, | |
| value ) |
| #define atomic_store_explicit | ( | object, | |
| desired, | |||
| order ) |
| #define atomic_store | ( | object, | |
| desired ) |
| #define atomic_load_explicit | ( | object, | |
| order ) |
| #define atomic_load | ( | object | ) |
| #define atomic_exchange_explicit | ( | object, | |
| desired, | |||
| order ) |
| #define atomic_exchange | ( | object, | |
| desired ) |
| #define atomic_compare_exchange_strong_explicit | ( | object, | |
| expected, | |||
| desired, | |||
| order_success, | |||
| order_fail ) |
| #define atomic_compare_exchange_strong | ( | object, | |
| expected, | |||
| desired ) |
| #define atomic_compare_exchange_weak_explicit | ( | object, | |
| expected, | |||
| desired, | |||
| order_success, | |||
| order_fail ) |
| #define atomic_compare_exchange_weak | ( | object, | |
| expected, | |||
| desired ) |
| #define atomic_fetch_add_explicit | ( | object, | |
| operand, | |||
| order ) |
| #define atomic_fetch_add | ( | object, | |
| operand ) |
| #define atomic_fetch_sub_explicit | ( | object, | |
| operand, | |||
| order ) |
| #define atomic_fetch_sub | ( | object, | |
| operand ) |
| #define atomic_fetch_or_explicit | ( | object, | |
| operand, | |||
| order ) |
| #define atomic_fetch_or | ( | object, | |
| operand ) |
| #define atomic_fetch_xor_explicit | ( | object, | |
| operand, | |||
| order ) |
| #define atomic_fetch_xor | ( | object, | |
| operand ) |
| #define atomic_fetch_and_explicit | ( | object, | |
| operand, | |||
| order ) |
| #define atomic_fetch_and | ( | object, | |
| operand ) |
| #define ATOMIC_FLAG_INIT { 0 } |
| #define atomic_flag_test_and_set_explicit | ( | __ptr, | |
| __mode ) |
| #define atomic_flag_test_and_set | ( | __ptr | ) |
| #define atomic_flag_clear_explicit | ( | __ptr, | |
| __mode ) |
| #define atomic_flag_clear | ( | __ptr | ) |
| typedef bool atomic_bool |
| typedef char atomic_char |
| typedef signed char atomic_schar |
| typedef unsigned char atomic_uchar |
| typedef short atomic_short |
| typedef unsigned short atomic_ushort |
| typedef int atomic_int |
| typedef unsigned int atomic_uint |
| typedef long atomic_long |
| typedef unsigned long atomic_ulong |
| typedef long long atomic_llong |
| typedef unsigned long long atomic_ullong |
| typedef uint_least16_t atomic_char16_t |
| typedef uint_least32_t atomic_char32_t |
| typedef wchar_t atomic_wchar_t |
| typedef int_least8_t atomic_int_least8_t |
| typedef uint_least8_t atomic_uint_least8_t |
| typedef int_least16_t atomic_int_least16_t |
| typedef uint_least16_t atomic_uint_least16_t |
| typedef int_least32_t atomic_int_least32_t |
| typedef uint_least32_t atomic_uint_least32_t |
| typedef int_least64_t atomic_int_least64_t |
| typedef uint_least64_t atomic_uint_least64_t |
| typedef int_fast8_t atomic_int_fast8_t |
| typedef uint_fast8_t atomic_uint_fast8_t |
| typedef int_fast16_t atomic_int_fast16_t |
| typedef uint_fast16_t atomic_uint_fast16_t |
| typedef int_fast32_t atomic_int_fast32_t |
| typedef uint_fast32_t atomic_uint_fast32_t |
| typedef int_fast64_t atomic_int_fast64_t |
| typedef uint_fast64_t atomic_uint_fast64_t |
| typedef intptr_t atomic_intptr_t |
| typedef uintptr_t atomic_uintptr_t |
| typedef size_t atomic_size_t |
| typedef ptrdiff_t atomic_ptrdiff_t |
| typedef intmax_t atomic_intmax_t |
| typedef uintmax_t atomic_uintmax_t |
| enum memory_order |