From: Mathieu Desnoyers Date: Thu, 23 Apr 2015 19:41:25 +0000 (-0400) Subject: Fix: rename RCU_DEBUG to DEBUG_RCU in urcu-qsbr.h X-Git-Tag: v0.7.14~3 X-Git-Url: http://git.liburcu.org/?p=userspace-rcu.git;a=commitdiff_plain;h=e824a59e2145383fffb648565209ce743990903b Fix: rename RCU_DEBUG to DEBUG_RCU in urcu-qsbr.h Keep a mapping allowing to define RCU_DEBUG within urcu-qsbr.h for compatibility purposes. Signed-off-by: Mathieu Desnoyers --- diff --git a/urcu-qsbr.h b/urcu-qsbr.h index efa0ec0..c1d64fd 100644 --- a/urcu-qsbr.h +++ b/urcu-qsbr.h @@ -43,6 +43,10 @@ extern "C" { #include +#ifdef RCU_DEBUG /* For backward compatibility */ +#define DEBUG_RCU +#endif + /* * Important ! * @@ -85,12 +89,12 @@ extern "C" { * QSBR read lock/unlock are guaranteed to be no-ops. Therefore, we expose them * in the LGPL header for any code to use. However, the debug version is not * nops and may contain sanity checks. To activate it, applications must be - * recompiled with -DRCU_DEBUG (even non-LGPL/GPL applications). This is the + * recompiled with -DDEBUG_RCU (even non-LGPL/GPL applications). This is the * best trade-off between license/performance/code triviality and * library debugging & tracing features we could come up with. */ -#if (!defined(BUILD_QSBR_LIB) && !defined(RCU_DEBUG)) +#if (!defined(BUILD_QSBR_LIB) && !defined(DEBUG_RCU)) static inline void rcu_read_lock(void) { @@ -100,12 +104,12 @@ static inline void rcu_read_unlock(void) { } -#else /* !RCU_DEBUG */ +#else /* !DEBUG_RCU */ extern void rcu_read_lock(void); extern void rcu_read_unlock(void); -#endif /* !RCU_DEBUG */ +#endif /* !DEBUG_RCU */ extern void rcu_quiescent_state(void); extern void rcu_thread_offline(void);