X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Farch_x86.h;h=f137a16d841c48e3c663a645286137ffe2114a04;hp=7d3d76db7a2c19ed5890869817109582a657073b;hb=bf9de1b724767a7b0d9f32385ed3ab8623aabb71;hpb=90586875e92a9cdc6c7088d8e9815a6a0f54beb1 diff --git a/urcu/arch_x86.h b/urcu/arch_x86.h index 7d3d76d..f137a16 100644 --- a/urcu/arch_x86.h +++ b/urcu/arch_x86.h @@ -23,17 +23,13 @@ */ #include -#include "config.h" +#include #define CONFIG_HAVE_MEM_COHERENCY #define CACHE_LINE_SIZE 128 -#ifndef BITS_PER_LONG -#define BITS_PER_LONG (__SIZEOF_LONG__ * 8) -#endif - -#ifdef CONFIG_HAVE_FENCE +#ifdef CONFIG_URCU_HAVE_FENCE #define mb() asm volatile("mfence":::"memory") #define rmb() asm volatile("lfence":::"memory") #define wmb() asm volatile("sfence"::: "memory") @@ -62,7 +58,7 @@ #define rmc() barrier() #define wmc() barrier() -#ifdef CONFIG_SMP +#ifdef CONFIG_URCU_SMP #define smp_mb() mb() #define smp_rmb() rmb() #define smp_wmb() wmb()