Rename all memory primitives with prefix cmm_
[urcu.git] / tests / test_urcu.c
index 50964159238e3fe87e515db7d00c3050aa33fa58..eeea7f55e2253853323525ad94076a070390b14e 100644 (file)
@@ -231,7 +231,7 @@ void *thr_reader(void *_count)
        while (!test_go)
        {
        }
-       smp_mb();
+       cmm_smp_mb();
 
        for (;;) {
                rcu_read_lock();
@@ -273,7 +273,7 @@ void *thr_writer(void *_count)
        while (!test_go)
        {
        }
-       smp_mb();
+       cmm_smp_mb();
 
        for (;;) {
                new = test_array_alloc();
@@ -421,7 +421,7 @@ int main(int argc, char **argv)
                        exit(1);
        }
 
-       smp_mb();
+       cmm_smp_mb();
 
        test_go = 1;
 
This page took 0.022715 seconds and 4 git commands to generate.