Rename all memory primitives with prefix cmm_
[urcu.git] / tests / test_urcu_defer.c
index 6fae31341ac867aa2f14efc336f5421344189a71..2cbb0416739a44aaf6d8dbd9ae2523ffbe843816 100644 (file)
@@ -199,7 +199,7 @@ void *thr_reader(void *_count)
        while (!test_go)
        {
        }
-       smp_mb();
+       cmm_smp_mb();
 
        for (;;) {
                rcu_read_lock();
@@ -247,7 +247,7 @@ void *thr_writer(void *data)
        while (!test_go)
        {
        }
-       smp_mb();
+       cmm_smp_mb();
 
        for (;;) {
                new = malloc(sizeof(*new));
@@ -400,7 +400,7 @@ int main(int argc, char **argv)
                        exit(1);
        }
 
-       smp_mb();
+       cmm_smp_mb();
 
        test_go = 1;
 
This page took 0.022377 seconds and 4 git commands to generate.