fix api.h generation on x86 and powerpc
[urcu.git] / tests / test_qsbr.c
index cf2fec2a8cbc8ce19f366ce669412bf3842ef5f5..d6c4d1aed017420666da1ad68562542f151b6d80 100644 (file)
@@ -35,9 +35,6 @@
 
 #include <urcu/arch.h>
 
-/* Make this big enough to include the POWER5+ L3 cacheline size of 256B */
-#define CACHE_LINE_SIZE 4096
-
 /* hardcoded number of CPUs */
 #define NR_CPUS 16384
 
@@ -262,7 +259,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();
                /* can be done after unlock */
                if (old)
                        old->a = 0;
This page took 0.023459 seconds and 4 git commands to generate.