urcu-defer: cleanup debug code
[urcu.git] / urcu-defer.c
index 00dd3c60b3bcf1a2ea7895b3612953a0203af6f6..cd939c7ac85b4bd03bb3d24f769cbb8ef8f70604 100644 (file)
@@ -116,19 +116,15 @@ static void rcu_defer_barrier_queue(struct defer_queue *queue,
                smp_rmb();       /* read head before q[]. */
                p = LOAD_SHARED(queue->q[i++ & DEFER_QUEUE_MASK]);
                if (unlikely(DQ_IS_FCT_BIT(p))) {
-                       //printf("%lu fct bit %p\n", i-1, p);
                        DQ_CLEAR_FCT_BIT(p);
                        queue->last_fct_out = p;
                        p = LOAD_SHARED(queue->q[i++ & DEFER_QUEUE_MASK]);
                } else if (unlikely(p == DQ_FCT_MARK)) {
-                       //printf("%lu fct mark %p\n", i-1, p);
                        p = LOAD_SHARED(queue->q[i++ & DEFER_QUEUE_MASK]);
                        queue->last_fct_out = p;
                        p = LOAD_SHARED(queue->q[i++ & DEFER_QUEUE_MASK]);
-               }// else
-                       //printf("%lu data %p\n", i-1, p);
+               }
                fct = queue->last_fct_out;
-               //printf("tid %lu %lu last_fct %p data %p\n", pthread_self(), i-1, fct, p);
                fct(p);
        }
        smp_mb();       /* push tail after having used q[] */
This page took 0.02239 seconds and 4 git commands to generate.