Add extern "C" to support linking userspace RCU library with C++ applications
[urcu.git] / urcu / arch_ppc.h
index edd1139cf761d28889b5561b44a9ddd32f52440b..49d844b617aafced769b48b3fddd57c5b3106e85 100644 (file)
  */
 
 #include <urcu/compiler.h>
+#include <urcu/config.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif 
 
-#define CONFIG_HAVE_FENCE 1
 #define CONFIG_HAVE_MEM_COHERENCY
 
 /* Include size of POWER5+ L3 cache lines: 256 bytes */
 #define rmc()  barrier()
 #define wmc()  barrier()
 
-/* Assume SMP machine, given we don't have this information */
-#define CONFIG_SMP 1
-
-#ifdef CONFIG_SMP
+#ifdef CONFIG_URCU_SMP
 #define smp_mb()       mb()
 #define smp_rmb()      rmb()
 #define smp_wmb()      wmb()
@@ -118,4 +119,8 @@ static inline cycles_t get_cycles (void)
        }
 }
 
+#ifdef __cplusplus 
+}
+#endif
+
 #endif /* _URCU_ARCH_PPC_H */
This page took 0.023802 seconds and 4 git commands to generate.