Module Name: src
Committed By: christos
Date: Fri Jan 31 22:32:12 UTC 2025
Modified Files:
src/external/bsd/jemalloc/include/jemalloc/internal:
jemalloc_internal_defs.h
Log Message:
isb is not supported in arm mode.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 \
src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
diff -u src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.17 src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.18
--- src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h:1.17 Fri Jan 31 14:49:14 2025
+++ src/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h Fri Jan 31 17:32:12 2025
@@ -37,7 +37,7 @@
#define CPU_SPINWAIT __asm__ volatile("pause")
/* 1 if CPU_SPINWAIT is defined, 0 otherwise. */
#define HAVE_CPU_SPINWAIT 1
-#elif defined(__arm__) || defined(__aarch64__)
+#elif defined(__aarch64__)
#define CPU_SPINWAIT __asm__ volatile("isb")
/* 1 if CPU_SPINWAIT is defined, 0 otherwise. */
#define HAVE_CPU_SPINWAIT 1