Fix: add missing destroy functions to queues/stack APIs
[userspace-rcu.git] / wfcqueue.c
index 4950c1008ebbd69c51bff06ae6cf929ef4bc5b73..7f8b588e997b31c0d199ace6c14a4507d9b6b02a 100644 (file)
@@ -40,9 +40,14 @@ void cds_wfcq_init(struct cds_wfcq_head *head,
        _cds_wfcq_init(head, tail);
 }
 
-bool cds_wfcq_empty(struct cds_wfcq_head *head,
+void cds_wfcq_destroy(struct cds_wfcq_head *head,
                struct cds_wfcq_tail *tail)
+{
+       _cds_wfcq_destroy(head, tail);
+}
 
+bool cds_wfcq_empty(struct cds_wfcq_head *head,
+               struct cds_wfcq_tail *tail)
 {
        return _cds_wfcq_empty(head, tail);
 }
This page took 0.022496 seconds and 4 git commands to generate.