Add pkg-config files for all urcu libs
[urcu.git] / tests / test_urcu_lfs.c
index 8335f2459f1f05533da21d5f0cc557ef815e28d9..834c72ea1abd22a42980ad0e8f324b1a4fa9c073 100644 (file)
@@ -203,13 +203,18 @@ fail:
 void *thr_dequeuer(void *_count)
 {
        unsigned long long *count = _count;
+       int ret;
 
        printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
                        "dequeuer", pthread_self(), (unsigned long)gettid());
 
        set_affinity();
 
-       rcu_defer_register_thread();
+       ret = rcu_defer_register_thread();
+       if (ret) {
+               printf("Error in rcu_defer_register_thread\n");
+               exit(-1);
+       }
        rcu_register_thread();
 
        while (!test_go)
This page took 0.022413 seconds and 4 git commands to generate.