From: Rich Felker Date: Sat, 7 May 2011 00:27:45 +0000 (-0400) Subject: remove debug code that was missed in barrier commit X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=9dd6399c95ed3ebc62492f6dedc569b5f0d8bb8e remove debug code that was missed in barrier commit --- diff --git a/src/thread/pthread_barrier_wait.c b/src/thread/pthread_barrier_wait.c index 1e638d96..aed1adc8 100644 --- a/src/thread/pthread_barrier_wait.c +++ b/src/thread/pthread_barrier_wait.c @@ -38,7 +38,6 @@ int pthread_barrier_wait(pthread_barrier_t *b) /* Last thread to enter the barrier wakes all non-instance-owners */ if (++inst->count == limit) { -a_spin(); a_spin(); b->_b_inst = 0; a_store(&b->_b_lock, 0); if (b->_b_waiters) __wake(&b->_b_lock, 1, 0);