We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b166c1d commit 8240effCopy full SHA for 8240eff
src/utils.h
@@ -66,9 +66,6 @@ static inline void *xrealloc(void *ptr, size_t size)
66
/* Compile read-write barrier */
67
#define brubeck_barrier() __sync_synchronize()
68
69
-/* Pause instruction to prevent excess processor bus usage */
70
-#define brubeck_cpu_relax() __asm__ volatile("pause\n": : :"memory")
71
-
72
/* Pause instruction to prevent excess processor bus usage (when possible) */
73
#if defined(__i386) || defined(__x86_64__)
74
#define brubeck_cpu_relax() __asm__ volatile("pause\n": : :"memory")
0 commit comments