Rename all memory primitives with prefix cmm_
[urcu.git] / urcu / rculist.h
index b0c4f1a9d1e4430b538d737bc69246b2e789ce65..3a4e335d8e457262cee3baf39f03d2b9aa7b3bac 100644 (file)
@@ -34,7 +34,7 @@ static inline void list_add_rcu(list_t *newp, list_t *head)
 {
        newp->next = head->next;
        newp->prev = head;
-       smp_wmb();
+       cmm_smp_wmb();
        head->next->prev = newp;
        head->next = newp;
 }
This page took 0.022756 seconds and 4 git commands to generate.