Rename all memory primitives with prefix cmm_
[urcu.git] / compat_futex.c
index 61bc6c36bae265d8a0a58ec5e8f7b74d43781f26..9dfcfeb43026639696875cc36367f05a554e0888 100644 (file)
@@ -55,7 +55,7 @@ int compat_futex_noasync(int *uaddr, int op, int val,
        /*
         * memory barriers to serialize with the previous uaddr modification.
         */
-       smp_mb();
+       cmm_smp_mb();
 
        ret = pthread_mutex_lock(&compat_futex_lock);
        assert(!ret);
@@ -100,7 +100,7 @@ int compat_futex_async(int *uaddr, int op, int val,
        /*
         * Ensure previous memory operations on uaddr have completed.
         */
-       smp_mb();
+       cmm_smp_mb();
 
        switch (op) {
        case FUTEX_WAIT:
This page took 0.022136 seconds and 4 git commands to generate.