X-Git-Url: https://git.lttng.org/?p=urcu.git;a=blobdiff_plain;f=tests%2Fbenchmark%2Ftest_urcu_qsbr.c;fp=tests%2Fbenchmark%2Ftest_urcu_qsbr.c;h=1ea369cbea9203fa690bee1d80c96f63fff488a4;hp=6a5174472b2c86b934edf812cd7a62a963b52fae;hb=014775106c60f02818ca755b331f887030bd440f;hpb=2a27e9319bacc9bc98f38afb7e4f050601ab979b diff --git a/tests/benchmark/test_urcu_qsbr.c b/tests/benchmark/test_urcu_qsbr.c index 6a51744..1ea369c 100644 --- a/tests/benchmark/test_urcu_qsbr.c +++ b/tests/benchmark/test_urcu_qsbr.c @@ -28,10 +28,10 @@ #include #include #include -#include #include #include +#include #include #include "thread-id.h" #include "../common/debug-yield.h" @@ -140,9 +140,9 @@ void *thr_reader(void *_count) rcu_register_thread(); - assert(rcu_read_ongoing()); + urcu_posix_assert(rcu_read_ongoing()); rcu_thread_offline(); - assert(!rcu_read_ongoing()); + urcu_posix_assert(!rcu_read_ongoing()); rcu_thread_online(); while (!test_go) @@ -152,11 +152,11 @@ void *thr_reader(void *_count) for (;;) { rcu_read_lock(); - assert(rcu_read_ongoing()); + urcu_posix_assert(rcu_read_ongoing()); local_ptr = rcu_dereference(test_rcu_pointer); rcu_debug_yield_read(); if (local_ptr) - assert(*local_ptr == 8); + urcu_posix_assert(*local_ptr == 8); if (caa_unlikely(rduration)) loop_sleep(rduration); rcu_read_unlock(); @@ -199,7 +199,7 @@ void *thr_writer(void *_count) for (;;) { new = malloc(sizeof(int)); - assert(new); + urcu_posix_assert(new); *new = 8; old = rcu_xchg_pointer(&test_rcu_pointer, new); if (caa_unlikely(wduration))