about summary refs log tree commit diff
path: root/src/thread/pthread_cond_broadcast.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_cond_broadcast.c')
-rw-r--r--src/thread/pthread_cond_broadcast.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/thread/pthread_cond_broadcast.c b/src/thread/pthread_cond_broadcast.c
index 6002c535..dec91164 100644
--- a/src/thread/pthread_cond_broadcast.c
+++ b/src/thread/pthread_cond_broadcast.c
@@ -2,8 +2,7 @@
 
 int pthread_cond_broadcast(pthread_cond_t *c)
 {
-	int w = c->_c_waiters;
-	if (a_swap(&c->_c_block, 0) || w)
-		__wake(&c->_c_block, -1, 0);
+	a_store(&c->_c_block, 0);
+	if (c->_c_waiters) __wake(&c->_c_block, -1, 0);
 	return 0;
 }