We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7e5df1 commit d2cc307Copy full SHA for d2cc307
Include/cpython/pyatomic_std.h
@@ -916,13 +916,15 @@ _Py_atomic_load_uint32_acquire(const uint32_t *obj)
916
{
917
_Py_USING_STD;
918
return atomic_load_explicit((const _Atomic(uint32_t)*)obj,
919
+ memory_order_acquire);
920
}
921
922
static inline Py_ssize_t
923
_Py_atomic_load_ssize_acquire(const Py_ssize_t *obj)
924
925
926
return atomic_load_explicit((const _Atomic(Py_ssize_t)*)obj,
927
928
929
930
0 commit comments