Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r902:4e72f77f0188
Date: 2014-02-28 07:57 +0100
http://bitbucket.org/pypy/stmgc/changeset/4e72f77f0188/

Log:    Fix

diff --git a/c7/stm/core.c b/c7/stm/core.c
--- a/c7/stm/core.c
+++ b/c7/stm/core.c
@@ -389,7 +389,7 @@
 
     /* if we were inevitable, signal */
     if (STM_PSEGMENT->transaction_state == TS_INEVITABLE)
-        cond_signal(C_INEVITABLE_DONE);
+        cond_broadcast(C_INEVITABLE_DONE);
 
     /* done */
     _finish_transaction();
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to