2022-06-01 23:43:25 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| https://www.php.net/license/3_01.txt |
|
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Levi Morrison <morrison.levi@gmail.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZEND_ATOMIC_H
|
|
|
|
#define ZEND_ATOMIC_H
|
|
|
|
|
|
|
|
#include "zend_portability.h"
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#define ZEND_GCC_PREREQ(x, y) \
|
|
|
|
((__GNUC__ == (x) && __GNUC_MINOR__ >= (y)) || (__GNUC__ > (x)))
|
|
|
|
|
|
|
|
/* Builtins are used to avoid library linkage */
|
2024-01-22 17:01:25 +08:00
|
|
|
#if __has_feature(c_atomic) && defined(__clang__)
|
2022-06-01 23:43:25 +08:00
|
|
|
#define HAVE_C11_ATOMICS 1
|
|
|
|
#elif ZEND_GCC_PREREQ(4, 7)
|
|
|
|
#define HAVE_GNUC_ATOMICS 1
|
|
|
|
#elif defined(__GNUC__)
|
|
|
|
#define HAVE_SYNC_ATOMICS 1
|
|
|
|
#elif !defined(ZEND_WIN32)
|
|
|
|
#define HAVE_NO_ATOMICS 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef ZEND_GCC_PREREQ
|
|
|
|
|
|
|
|
/* Treat zend_atomic_* types as opaque. They have definitions only for size
|
|
|
|
* and alignment purposes.
|
|
|
|
*/
|
|
|
|
|
2022-09-22 19:17:02 +08:00
|
|
|
#if defined(ZEND_WIN32) || defined(HAVE_SYNC_ATOMICS)
|
2022-06-01 23:43:25 +08:00
|
|
|
typedef struct zend_atomic_bool_s {
|
|
|
|
volatile char value;
|
|
|
|
} zend_atomic_bool;
|
2024-05-30 18:53:44 +08:00
|
|
|
typedef struct zend_atomic_int_s {
|
|
|
|
# ifdef ZEND_WIN32
|
|
|
|
volatile long value;
|
|
|
|
# else
|
|
|
|
volatile int value;
|
|
|
|
# endif
|
|
|
|
} zend_atomic_int;
|
2022-09-22 19:17:02 +08:00
|
|
|
#elif defined(HAVE_C11_ATOMICS)
|
2022-06-01 23:43:25 +08:00
|
|
|
typedef struct zend_atomic_bool_s {
|
|
|
|
_Atomic(bool) value;
|
|
|
|
} zend_atomic_bool;
|
2024-05-30 18:53:44 +08:00
|
|
|
typedef struct zend_atomic_int_s {
|
|
|
|
_Atomic(int) value;
|
|
|
|
} zend_atomic_int;
|
2022-06-01 23:43:25 +08:00
|
|
|
#else
|
|
|
|
typedef struct zend_atomic_bool_s {
|
|
|
|
volatile bool value;
|
|
|
|
} zend_atomic_bool;
|
2024-05-30 18:53:44 +08:00
|
|
|
typedef struct zend_atomic_int_s {
|
|
|
|
volatile int value;
|
|
|
|
} zend_atomic_int;
|
2022-06-01 23:43:25 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
|
2022-09-22 19:17:02 +08:00
|
|
|
#ifdef ZEND_WIN32
|
2022-06-01 23:43:25 +08:00
|
|
|
|
2022-07-24 12:57:18 +08:00
|
|
|
#ifndef InterlockedExchange8
|
|
|
|
#define InterlockedExchange8 _InterlockedExchange8
|
|
|
|
#endif
|
|
|
|
#ifndef InterlockedOr8
|
|
|
|
#define InterlockedOr8 _InterlockedOr8
|
|
|
|
#endif
|
2024-05-30 18:53:44 +08:00
|
|
|
#ifndef InterlockedCompareExchange8
|
|
|
|
#define InterlockedCompareExchange8 _InterlockedCompareExchange8
|
|
|
|
#endif
|
|
|
|
#ifndef InterlockedExchange
|
|
|
|
#define InterlockedExchange _InterlockedExchange
|
|
|
|
#endif
|
|
|
|
#ifndef InterlockedOr
|
|
|
|
#define InterlockedOr _InterlockedOr
|
|
|
|
#endif
|
|
|
|
#ifndef InterlockedCompareExchange
|
|
|
|
#define InterlockedCompareExchange _InterlockedCompareExchange
|
|
|
|
#endif
|
2022-07-24 12:57:18 +08:00
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
#define ZEND_ATOMIC_BOOL_INIT(obj, desired) ((obj)->value = (desired))
|
2024-05-30 18:53:44 +08:00
|
|
|
#define ZEND_ATOMIC_INT_INIT(obj, desired) ((obj)->value = (desired))
|
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INITIALIZER(desired) {.value = (desired)}
|
|
|
|
#define ZEND_ATOMIC_INT_INITIALIZER(desired) {.value = (desired)}
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_exchange_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
return InterlockedExchange8(&obj->value, desired);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_exchange_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
return (int) InterlockedExchange(&obj->value, desired);
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_compare_exchange_ex(zend_atomic_bool *obj, bool *expected, bool desired) {
|
|
|
|
bool prev = (bool) InterlockedCompareExchange8(&obj->value, *expected, desired);
|
|
|
|
if (prev == *expected) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*expected = prev;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_int_compare_exchange_ex(zend_atomic_int *obj, int *expected, int desired) {
|
|
|
|
int prev = (int) InterlockedCompareExchange(&obj->value, *expected, desired);
|
|
|
|
if (prev == *expected) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*expected = prev;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
/* On this platform it is non-const due to Iterlocked API*/
|
|
|
|
static zend_always_inline bool zend_atomic_bool_load_ex(zend_atomic_bool *obj) {
|
|
|
|
/* Or'ing with false won't change the value. */
|
|
|
|
return InterlockedOr8(&obj->value, false);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_load_ex(zend_atomic_int *obj) {
|
|
|
|
/* Or'ing with 0 won't change the value. */
|
|
|
|
return (int) InterlockedOr(&obj->value, 0);
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline void zend_atomic_bool_store_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
(void)InterlockedExchange8(&obj->value, desired);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline void zend_atomic_int_store_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
(void)InterlockedExchange(&obj->value, desired);
|
|
|
|
}
|
|
|
|
|
2022-09-22 19:17:02 +08:00
|
|
|
#elif defined(HAVE_C11_ATOMICS)
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INIT(obj, desired) __c11_atomic_init(&(obj)->value, (desired))
|
2024-05-30 18:53:44 +08:00
|
|
|
#define ZEND_ATOMIC_INT_INIT(obj, desired) __c11_atomic_init(&(obj)->value, (desired))
|
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INITIALIZER(desired) {.value = (desired)}
|
|
|
|
#define ZEND_ATOMIC_INT_INITIALIZER(desired) {.value = (desired)}
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_exchange_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
return __c11_atomic_exchange(&obj->value, desired, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_exchange_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
return __c11_atomic_exchange(&obj->value, desired, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_compare_exchange_ex(zend_atomic_bool *obj, bool *expected, bool desired) {
|
|
|
|
return __c11_atomic_compare_exchange_strong(&obj->value, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_int_compare_exchange_ex(zend_atomic_int *obj, int *expected, int desired) {
|
|
|
|
return __c11_atomic_compare_exchange_strong(&obj->value, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline bool zend_atomic_bool_load_ex(const zend_atomic_bool *obj) {
|
|
|
|
return __c11_atomic_load(&obj->value, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_load_ex(const zend_atomic_int *obj) {
|
|
|
|
return __c11_atomic_load(&obj->value, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline void zend_atomic_bool_store_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
__c11_atomic_store(&obj->value, desired, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline void zend_atomic_int_store_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
__c11_atomic_store(&obj->value, desired, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2022-09-22 19:17:02 +08:00
|
|
|
#elif defined(HAVE_GNUC_ATOMICS)
|
2022-06-01 23:43:25 +08:00
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
/* bool */
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
#define ZEND_ATOMIC_BOOL_INIT(obj, desired) ((obj)->value = (desired))
|
2024-05-30 18:53:44 +08:00
|
|
|
#define ZEND_ATOMIC_INT_INIT(obj, desired) ((obj)->value = (desired))
|
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INITIALIZER(desired) {.value = (desired)}
|
|
|
|
#define ZEND_ATOMIC_INT_INITIALIZER(desired) {.value = (desired)}
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_exchange_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
bool prev = false;
|
|
|
|
__atomic_exchange(&obj->value, &desired, &prev, __ATOMIC_SEQ_CST);
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_exchange_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
int prev = false;
|
|
|
|
__atomic_exchange(&obj->value, &desired, &prev, __ATOMIC_SEQ_CST);
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_compare_exchange_ex(zend_atomic_bool *obj, bool *expected, bool desired) {
|
|
|
|
return __atomic_compare_exchange(&obj->value, expected, &desired, /* weak */ false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_int_compare_exchange_ex(zend_atomic_int *obj, int *expected, int desired) {
|
|
|
|
return __atomic_compare_exchange(&obj->value, expected, &desired, /* weak */ false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline bool zend_atomic_bool_load_ex(const zend_atomic_bool *obj) {
|
|
|
|
bool prev = false;
|
|
|
|
__atomic_load(&obj->value, &prev, __ATOMIC_SEQ_CST);
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_load_ex(const zend_atomic_int *obj) {
|
|
|
|
int prev = false;
|
|
|
|
__atomic_load(&obj->value, &prev, __ATOMIC_SEQ_CST);
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline void zend_atomic_bool_store_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
__atomic_store(&obj->value, &desired, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline void zend_atomic_int_store_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
__atomic_store(&obj->value, &desired, __ATOMIC_SEQ_CST);
|
|
|
|
}
|
|
|
|
|
2022-09-22 19:17:02 +08:00
|
|
|
#elif defined(HAVE_SYNC_ATOMICS)
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INIT(obj, desired) ((obj)->value = (desired))
|
2024-05-30 18:53:44 +08:00
|
|
|
#define ZEND_ATOMIC_INT_INIT(obj, desired) ((obj)->value = (desired))
|
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INITIALIZER(desired) {.value = (desired)}
|
|
|
|
#define ZEND_ATOMIC_INT_INITIALIZER(desired) {.value = (desired)}
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_exchange_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
bool prev = __sync_lock_test_and_set(&obj->value, desired);
|
|
|
|
|
|
|
|
/* __sync_lock_test_and_set only does an acquire barrier, so sync
|
|
|
|
* immediately after.
|
|
|
|
*/
|
|
|
|
__sync_synchronize();
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_exchange_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
int prev = __sync_lock_test_and_set(&obj->value, desired);
|
|
|
|
|
|
|
|
/* __sync_lock_test_and_set only does an acquire barrier, so sync
|
|
|
|
* immediately after.
|
|
|
|
*/
|
|
|
|
__sync_synchronize();
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_compare_exchange_ex(zend_atomic_bool *obj, bool *expected, bool desired) {
|
|
|
|
bool prev = __sync_val_compare_and_swap(&obj->value, *expected, desired);
|
|
|
|
if (prev == *expected) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*expected = prev;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_int_compare_exchange_ex(zend_atomic_int *obj, int *expected, int desired) {
|
|
|
|
int prev = __sync_val_compare_and_swap(&obj->value, *expected, desired);
|
|
|
|
if (prev == *expected) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*expected = prev;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline bool zend_atomic_bool_load_ex(zend_atomic_bool *obj) {
|
|
|
|
/* Or'ing false won't change the value */
|
|
|
|
return __sync_fetch_and_or(&obj->value, false);
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_load_ex(zend_atomic_int *obj) {
|
|
|
|
/* Or'ing 0 won't change the value */
|
|
|
|
return __sync_fetch_and_or(&obj->value, 0);
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline void zend_atomic_bool_store_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
__sync_synchronize();
|
|
|
|
obj->value = desired;
|
|
|
|
__sync_synchronize();
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline void zend_atomic_int_store_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
__sync_synchronize();
|
|
|
|
obj->value = desired;
|
|
|
|
__sync_synchronize();
|
|
|
|
}
|
|
|
|
|
2022-09-22 19:17:02 +08:00
|
|
|
#elif defined(HAVE_NO_ATOMICS)
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
#warning No atomics support detected. Please open an issue with platform details.
|
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INIT(obj, desired) ((obj)->value = (desired))
|
2024-05-30 18:53:44 +08:00
|
|
|
#define ZEND_ATOMIC_INT_INIT(obj, desired) ((obj)->value = (desired))
|
|
|
|
|
|
|
|
#define ZEND_ATOMIC_BOOL_INITIALIZER(desired) {.value = (desired)}
|
|
|
|
#define ZEND_ATOMIC_INT_INITIALIZER(desired) {.value = (desired)}
|
2022-06-01 23:43:25 +08:00
|
|
|
|
|
|
|
static zend_always_inline void zend_atomic_bool_store_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
obj->value = desired;
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline void zend_atomic_int_store_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
obj->value = desired;
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_bool_compare_exchange_ex(zend_atomic_int *obj, bool *expected, bool desired) {
|
|
|
|
bool prev = obj->value;
|
|
|
|
if (prev == *expected) {
|
|
|
|
obj->value = desired;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*expected = prev;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static zend_always_inline bool zend_atomic_int_compare_exchange_ex(zend_atomic_int *obj, int *expected, int desired) {
|
|
|
|
int prev = obj->value;
|
|
|
|
if (prev == *expected) {
|
|
|
|
obj->value = desired;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*expected = prev;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline bool zend_atomic_bool_load_ex(const zend_atomic_bool *obj) {
|
|
|
|
return obj->value;
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_load_ex(const zend_atomic_int *obj) {
|
|
|
|
return obj->value;
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
static zend_always_inline bool zend_atomic_bool_exchange_ex(zend_atomic_bool *obj, bool desired) {
|
|
|
|
bool prev = obj->value;
|
2022-06-30 11:54:47 +08:00
|
|
|
obj->value = desired;
|
2022-06-01 23:43:25 +08:00
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2024-05-30 18:53:44 +08:00
|
|
|
static zend_always_inline int zend_atomic_int_exchange_ex(zend_atomic_int *obj, int desired) {
|
|
|
|
int prev = obj->value;
|
|
|
|
obj->value = desired;
|
|
|
|
return prev;
|
|
|
|
}
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
ZEND_API void zend_atomic_bool_init(zend_atomic_bool *obj, bool desired);
|
2024-05-30 18:53:44 +08:00
|
|
|
ZEND_API void zend_atomic_int_init(zend_atomic_int *obj, int desired);
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
ZEND_API bool zend_atomic_bool_exchange(zend_atomic_bool *obj, bool desired);
|
2024-05-30 18:53:44 +08:00
|
|
|
ZEND_API int zend_atomic_int_exchange(zend_atomic_int *obj, int desired);
|
|
|
|
|
|
|
|
ZEND_API bool zend_atomic_bool_compare_exchange(zend_atomic_bool *obj, bool *expected, bool desired);
|
|
|
|
ZEND_API bool zend_atomic_int_compare_exchange(zend_atomic_int *obj, int *expected, int desired);
|
|
|
|
|
2022-06-01 23:43:25 +08:00
|
|
|
ZEND_API void zend_atomic_bool_store(zend_atomic_bool *obj, bool desired);
|
2024-05-30 18:53:44 +08:00
|
|
|
ZEND_API void zend_atomic_int_store(zend_atomic_int *obj, int desired);
|
2022-06-01 23:43:25 +08:00
|
|
|
|
2022-09-22 19:17:02 +08:00
|
|
|
#if defined(ZEND_WIN32) || defined(HAVE_SYNC_ATOMICS)
|
2022-06-01 23:43:25 +08:00
|
|
|
/* On these platforms it is non-const due to underlying APIs. */
|
|
|
|
ZEND_API bool zend_atomic_bool_load(zend_atomic_bool *obj);
|
2024-05-30 18:53:44 +08:00
|
|
|
ZEND_API int zend_atomic_int_load(zend_atomic_int *obj);
|
2022-06-01 23:43:25 +08:00
|
|
|
#else
|
|
|
|
ZEND_API bool zend_atomic_bool_load(const zend_atomic_bool *obj);
|
2024-05-30 18:53:44 +08:00
|
|
|
ZEND_API int zend_atomic_int_load(const zend_atomic_int *obj);
|
2022-06-01 23:43:25 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
END_EXTERN_C()
|
|
|
|
|
|
|
|
#endif
|