1
0
mirror of https://github.com/janet-lang/janet synced 2026-04-26 08:41:29 +00:00
This commit is contained in:
Calvin Rose
2025-05-16 18:35:33 -05:00
parent a8e2c8e5b8
commit c5b3da1ffe

View File

@@ -591,7 +591,7 @@ JanetAtomicInt janet_atomic_load(JanetAtomicInt volatile *x) {
JanetAtomicInt janet_atomic_load_relaxed(JanetAtomicInt volatile *x) {
#ifdef _MSC_VER
return _InterlockedOrNoFence(x, 0);
return _InterlockedOr(x, 0);
#elif defined(JANET_USE_STDATOMIC)
return atomic_load_explicit(x, memory_order_relaxed);
#else