Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to use memory_order_seq_cst instead of GCC internal for C11 #7989

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion wolfssl/wolfcrypt/wc_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@ WOLFSSL_ABI WOLFSSL_API int wolfCrypt_Cleanup(void);
/* use user-supplied XFENCE definition. */
#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L)
#include <stdatomic.h>
#define XFENCE() atomic_thread_fence(__ATOMIC_SEQ_CST)
#define XFENCE() atomic_thread_fence(memory_order_seq_cst)
#elif defined(__GNUC__) && (__GNUC__ >= 4) && (__GNUC__ < 5)
#define XFENCE() __sync_synchronize()
#elif (defined(__GNUC__) && (__GNUC__ >= 5)) || defined (__clang__)
Expand Down