Fallback mechanism not working on platform where TLS is unsupported
[urcu.git] / urcu / rculfqueue.h
index 757d133028357265ac980f30cecee5124cbff2e4..598fa5071a2ca727e43d07a67cb2a62eb4980632 100644 (file)
@@ -34,11 +34,11 @@ struct cds_lfq_queue_rcu;
 
 struct cds_lfq_node_rcu {
        struct cds_lfq_node_rcu *next;
+       int dummy;
 };
 
 struct cds_lfq_queue_rcu {
-       struct cds_lfq_node_rcu *head;
-       struct cds_lfq_node_rcu *tail;
+       struct cds_lfq_node_rcu *head, *tail;
        void (*queue_call_rcu)(struct rcu_head *head,
                void (*func)(struct rcu_head *head));
 };
This page took 0.022823 seconds and 4 git commands to generate.