CDS API: removal of rcu_read lock/unlock dep, removal of call_rcu argument from init
[urcu.git] / rculfqueue.c
index 0daee5dcf6d148b149b7773f752c8b6b01b20c08..c579e75a759e4e25d0f1780ecabd5c0b1bcd3e2a 100644 (file)
  */
 
 #define _LGPL_SOURCE
-/* Use the urcu symbols to select the appropriate rcu flavor at link time */
-#include "urcu.h"
+
+#ifdef RCU_QSBR
+# include "urcu-qsbr.h"
+#elif defined(RCU_BP)
+# include "urcu-bp.h"
+#else
+# include "urcu.h"
+#endif
 
 #undef _LGPL_SOURCE
 /* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
@@ -38,10 +44,14 @@ void cds_lfq_node_init_rcu(struct cds_lfq_node_rcu *node)
        _cds_lfq_node_init_rcu(node);
 }
 
-void cds_lfq_init_rcu(struct cds_lfq_queue_rcu *q,
-                     void (*release)(struct urcu_ref *ref))
+void cds_lfq_init_rcu(struct cds_lfq_queue_rcu *q)
+{
+       _cds_lfq_init_rcu(q);
+}
+
+int cds_lfq_destroy_rcu(struct cds_lfq_queue_rcu *q)
 {
-       _cds_lfq_init_rcu(q, release);
+       return _cds_lfq_destroy_rcu(q);
 }
 
 void cds_lfq_enqueue_rcu(struct cds_lfq_queue_rcu *q, struct cds_lfq_node_rcu *node)
This page took 0.02268 seconds and 4 git commands to generate.