wfstack: implement cds_wfs_pop_all and iterators, document API
[urcu.git] / urcu-call-rcu.h
index b109f4e4d16f250b1f5fdcb2e01e196f3539f238..1dad0e2c46cc88d691827208c38c6be092f2bf1e 100644 (file)
@@ -32,7 +32,7 @@
 #include <stdlib.h>
 #include <pthread.h>
 
-#include <urcu/wfqueue.h>
+#include <urcu/wfcqueue.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -55,16 +55,16 @@ struct call_rcu_data;
  */
 
 struct rcu_head {
-       struct cds_wfq_node next;
+       struct cds_wfcq_node next;
        void (*func)(struct rcu_head *head);
 };
 
 /*
  * Exported functions
  *
- * Important: see userspace RCU API.txt for call_rcu family of functions
- * usage detail, including the surrounding RCU usage required when using
- * these primitives.
+ * Important: see rcu-api.txt in userspace-rcu documentation for
+ * call_rcu family of functions usage detail, including the surrounding
+ * RCU usage required when using these primitives.
  */
 
 void call_rcu(struct rcu_head *head,
This page took 0.023169 seconds and 4 git commands to generate.