Add `urcu_posix_assert()` as `assert()` replacement
[urcu.git] / tests / benchmark / test_urcu_qsbr_timing.c
index 71d8d8d806179b23c11c2b978892ba02304e2e1c..09b9ca963c9133496cb3f2cc12512ede8e70089a 100644 (file)
 #include <sys/wait.h>
 #include <unistd.h>
 #include <stdio.h>
-#include <assert.h>
 #include <errno.h>
 
 #include <urcu/arch.h>
+#include <urcu/assert.h>
 #include "thread-id.h"
 
 #define _LGPL_SOURCE
@@ -104,7 +104,7 @@ void *thr_reader(void *arg)
                        _rcu_read_lock();
                        local_ptr = _rcu_dereference(test_rcu_pointer);
                        if (local_ptr) {
-                               assert(local_ptr->a == 8);
+                               urcu_posix_assert(local_ptr->a == 8);
                        }
                        _rcu_read_unlock();
                }
@@ -141,7 +141,7 @@ void *thr_writer(void *arg)
                        rcu_copy_mutex_lock();
                        old = test_rcu_pointer;
                        if (old) {
-                               assert(old->a == 8);
+                               urcu_posix_assert(old->a == 8);
                        }
                        new->a = 8;
                        old = rcu_xchg_pointer(&test_rcu_pointer, new);
This page took 0.023301 seconds and 4 git commands to generate.