Expose nop QSBR read lock to non-GPL/LGPL programs
authorMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Wed, 16 Sep 2009 13:30:22 +0000 (09:30 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Wed, 16 Sep 2009 13:30:22 +0000 (09:30 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
urcu-qsbr.c
urcu-qsbr.h

index d1f5d91846af8f8098eacab85a588d945ab9873f..ccecab4e7b02b63d80f6c87085486dee0a5452f5 100644 (file)
@@ -32,6 +32,7 @@
 #include <errno.h>
 #include <poll.h>
 
+#define BUILD_QSBR_LIB
 #include "urcu-qsbr-static.h"
 /* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
 #include "urcu-qsbr.h"
index 1dc4ddd6d27a0a59a810c5c7652e984374a0ac91..9a2c82f4b1e503155de664a545c8c5e5697c5608 100644 (file)
  * library wrappers to be used by non-LGPL compatible source code.
  */
 
+/*
+ * 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 -DURCU_DEBUG (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(URCU_DEBUG))
+
+static inline void rcu_read_lock(void)
+{
+}
+
+static inline void rcu_read_lock(void)
+{
+}
+
+#else /* !URCU_DEBUG */
+
 extern void rcu_read_lock(void);
 extern void rcu_read_unlock(void);
 
+#endif /* !URCU_DEBUG */
+
 extern void *rcu_dereference(void *p);
 
 extern void rcu_quiescent_state(void);
This page took 0.026561 seconds and 4 git commands to generate.