X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Ftest_urcu_wfq.c;h=cb49454e7b06d995f77af55321fc55a385180097;hp=b0629d2a1eeabf33a9d073b2c4a75af39bef7076;hb=06f22bdbb0c4c4d5db42a2e2dc35818aa61415be;hpb=4afee0a75aa60a2640afc9ebccc417c3179b276e diff --git a/tests/test_urcu_wfq.c b/tests/test_urcu_wfq.c index b0629d2..cb49454 100644 --- a/tests/test_urcu_wfq.c +++ b/tests/test_urcu_wfq.c @@ -76,7 +76,7 @@ static unsigned long wdelay; static inline void loop_sleep(unsigned long l) { while(l-- != 0) - cpu_relax(); + caa_cpu_relax(); } static int verbose_mode; @@ -167,7 +167,7 @@ void *thr_enqueuer(void *_count) while (!test_go) { } - smp_mb(); + cmm_smp_mb(); for (;;) { struct wfq_node *node = malloc(sizeof(*node)); @@ -207,7 +207,7 @@ void *thr_dequeuer(void *_count) while (!test_go) { } - smp_mb(); + cmm_smp_mb(); for (;;) { struct wfq_node *node = wfq_dequeue_blocking(&q); @@ -354,7 +354,7 @@ int main(int argc, char **argv) exit(1); } - smp_mb(); + cmm_smp_mb(); test_go = 1;