Fix static linking: fix symbol name namespaces
[urcu.git] / tests / test_urcu_qsbr_gc.c
index f8cf784ccd2a455c1afce76ec7dc7449cb671412..11668ee017e97f325ea9a9243e02d90aefbe24c7 100644 (file)
@@ -213,7 +213,7 @@ void *thr_reader(void *_count)
        for (;;) {
                _rcu_read_lock();
                local_ptr = _rcu_dereference(test_rcu_pointer);
-               debug_yield_read();
+               rcu_debug_yield_read();
                if (local_ptr)
                        assert(local_ptr->a == 8);
                if (caa_unlikely(rduration))
@@ -361,10 +361,10 @@ int main(int argc, char **argv)
                switch (argv[i][1]) {
 #ifdef DEBUG_YIELD
                case 'r':
-                       yield_active |= YIELD_READ;
+                       rcu_yield_active |= RCU_YIELD_READ;
                        break;
                case 'w':
-                       yield_active |= YIELD_WRITE;
+                       rcu_yield_active |= RCU_YIELD_WRITE;
                        break;
 #endif
                case 'a':
This page took 0.022461 seconds and 4 git commands to generate.