Handle _LGPL_SOURCE config
[lttng-ust.git] / include / lttng / tracepoint.h
index 929a863ffc1e91d17056f3a40e2d9433bfab389b..a224caebcd8485cf731648a0b6ce0e718d8d0bae 100644 (file)
@@ -15,7 +15,7 @@
  */
 
 #include <urcu-bp.h>
-#include <tracepoint-types.h>
+#include <lttng/tracepoint-types.h>
 #include <urcu/compiler.h>
 #include <dlfcn.h>     /* for dlopen */
 
@@ -113,13 +113,19 @@ extern "C" {
 #define _TP_ARGS_DATA_VAR(...)         _TP_DATA_VAR_N(_TP_NARGS(0, ##__VA_ARGS__), ##__VA_ARGS__)
 #define _TP_PARAMS(...)                        __VA_ARGS__
 
+#ifdef _LGPL_SOURCE
+#define _TP_RCU_LINK_TEST()    1
+#else
+#define _TP_RCU_LINK_TEST()    rcu_read_lock_bp
+#endif
+
 #define _DECLARE_TRACEPOINT(provider, name, ...)                                       \
 extern struct tracepoint __tracepoint_##provider##___##name;                           \
 static inline void __tracepoint_cb_##provider##___##name(_TP_ARGS_PROTO(__VA_ARGS__))  \
 {                                                                                      \
        struct tracepoint_probe *__tp_probe;                                            \
                                                                                        \
-       if (!rcu_read_lock_bp)                                                          \
+       if (!_TP_RCU_LINK_TEST())                                                       \
                return;                                                                 \
        rcu_read_lock_bp();                                                             \
        __tp_probe = rcu_dereference_bp(__tracepoint_##provider##___##name.probes);     \
This page took 0.024896 seconds and 4 git commands to generate.