urcu-defer: cleanup debug code
[urcu.git] / urcu-defer-static.h
index 7d0ed52cf88b624d5a236a5a35c3d1f8920ef661..4cfa837e502632cc2f66b8f6cd5fe084efba11c0 100644 (file)
@@ -152,7 +152,6 @@ static inline void _rcu_defer_queue(void (*fct)(void *p), void *p)
 
        smp_wmb();      /* Publish new pointer before write q[] */
        if (unlikely(defer_queue.last_fct_in != fct)) {
-               //printf("fct diff %p %p\n", defer_queue.last_fct, fct);
                defer_queue.last_fct_in = fct;
                if (unlikely(DQ_IS_FCT_BIT(fct) || fct == DQ_FCT_MARK)) {
                        /*
@@ -170,7 +169,6 @@ static inline void _rcu_defer_queue(void (*fct)(void *p), void *p)
                                      fct);
                }
        } else {
-               //printf("fct same %p\n", fct);
                if (unlikely(DQ_IS_FCT_BIT(p) || p == DQ_FCT_MARK)) {
                        /*
                         * If the data to encode is not aligned or the marker,
This page took 0.022596 seconds and 4 git commands to generate.