Fix: add missing destroy functions to queues/stack APIs
[userspace-rcu.git] / lfstack.c
index db2c2cf97cf1dfd3559deb2a77e13c12de542ffe..30f1daaeeeeca66b93eb1c49b9c26a74f70d5da1 100644 (file)
--- a/lfstack.c
+++ b/lfstack.c
@@ -40,6 +40,11 @@ void cds_lfs_init(struct cds_lfs_stack *s)
        _cds_lfs_init(s);
 }
 
+void cds_lfs_destroy(struct cds_lfs_stack *s)
+{
+       _cds_lfs_destroy(s);
+}
+
 bool cds_lfs_empty(struct cds_lfs_stack *s)
 {
        return _cds_lfs_empty(s);
This page took 0.022336 seconds and 4 git commands to generate.