about summary refs log tree commit diff stats
path: root/src/main.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-12-02 21:44:35 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-12-02 21:44:35 +0100
commit40a81173f395ff3f7da28e5034a09b248dc97fb4 (patch)
tree2f16fec9d068b987ad210e807080eb27a0b787e0 /src/main.c
parent19a66086195dc97ca316af78258653144eb19695 (diff)
downloadbox64-40a81173f395ff3f7da28e5034a09b248dc97fb4.tar.gz
box64-40a81173f395ff3f7da28e5034a09b248dc97fb4.zip
[ARM64_DYNAREC] Restaured Memory Barrier on LOCK operation, and disable the use of Atomic extension for now (there is an issue somewhere)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 5b4312f2..ce34ccb9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -377,8 +377,8 @@ HWCAP2_ECV
         arm64_pmull = 1;
     if(hwcap&HWCAP_AES)
         arm64_aes = 1;
-    if(hwcap&HWCAP_ATOMICS)
-        arm64_atomics = 1;
+    /*if(hwcap&HWCAP_ATOMICS)
+        arm64_atomics = 1;*/
     #ifdef HWCAP_SHA1
     if(hwcap&HWCAP_SHA1)
         arm64_sha1 = 1;