From: Mathieu Desnoyers Date: Sun, 20 Sep 2009 15:18:23 +0000 (-0400) Subject: urcu-defer: cleanup debug code X-Git-Tag: v0.1~62 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=29cdb8d893d97704e4a5c893709e81c3b6da6f63 urcu-defer: cleanup debug code Signed-off-by: Mathieu Desnoyers --- diff --git a/urcu-defer-static.h b/urcu-defer-static.h index 7d0ed52..4cfa837 100644 --- a/urcu-defer-static.h +++ b/urcu-defer-static.h @@ -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, diff --git a/urcu-defer.c b/urcu-defer.c index 00dd3c6..cd939c7 100644 --- a/urcu-defer.c +++ b/urcu-defer.c @@ -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[] */