mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
gh-131121: Fix _Py_atomic_store_char_relaxed memory order (gh-131122)
This commit is contained in:
parent
1fb7e2aeb7
commit
7ffe93faf1
1 changed files with 1 additions and 1 deletions
|
|
@ -519,7 +519,7 @@ _Py_atomic_store_ullong_relaxed(unsigned long long *obj,
|
|||
|
||||
static inline void
|
||||
_Py_atomic_store_char_relaxed(char *obj, char value)
|
||||
{ __atomic_store_n(obj, value, __ATOMIC_RELEASE); }
|
||||
{ __atomic_store_n(obj, value, __ATOMIC_RELAXED); }
|
||||
|
||||
static inline void
|
||||
_Py_atomic_store_uchar_relaxed(unsigned char *obj, unsigned char value)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue