Fixes to allow building on Power
[urcu.git] / tests / test_urcu_bp.c
index 89873324a3580badfdecfe5a1981ef799e13bca0..baf23dc8d70121b833d7cf63e1ac642ce36324c4 100644 (file)
@@ -32,6 +32,7 @@
 #include <assert.h>
 #include <sys/syscall.h>
 #include <sched.h>
+#include <errno.h>
 
 #include <urcu/arch.h>
 
@@ -256,7 +257,8 @@ void *thr_writer(void *_count)
        for (;;) {
                new = test_array_alloc();
                new->a = 8;
-               old = rcu_publish_content(&test_rcu_pointer, new);
+               old = rcu_xchg_pointer(&test_rcu_pointer, new);
+               synchronize_rcu();
                if (old)
                        old->a = 0;
                test_array_free(old);
This page took 0.022296 seconds and 4 git commands to generate.