summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Newton <will.newton@linaro.org>2013-08-27 10:39:03 +0100
committerWill Newton <will.newton@linaro.org>2013-08-27 10:39:03 +0100
commit02506908364488c180f8a2a15dc082a81a6bf18b (patch)
tree35ac98ee207c573546140800293b45347bd7d7e6
parent94bba60501da90cbc6d29a01b8f0a6efe64363f9 (diff)
jemalloc: Fix typo.
-rw-r--r--reference/jemalloc/include/jemalloc/jemalloc_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/reference/jemalloc/include/jemalloc/jemalloc_defs.h b/reference/jemalloc/include/jemalloc/jemalloc_defs.h
index de73acc..7891a4e 100644
--- a/reference/jemalloc/include/jemalloc/jemalloc_defs.h
+++ b/reference/jemalloc/include/jemalloc/jemalloc_defs.h
@@ -46,7 +46,7 @@
* Hyper-threaded CPUs may need a special instruction inside spin loops in
* order to yield to another virtual CPU.
*/
-#if (defined(__i386__) || defined(__x86_64__)
+#if defined(__i386__) || defined(__x86_64__)
#define CPU_SPINWAIT __asm__ volatile("pause")
#else
#define CPU_SPINWAIT