[pypy-commit] stmgc default: Fix

arigo noreply at buildbot.pypy.org
Fri Feb 28 19:54:02 CET 2014


Author: Armin Rigo <arigo at 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();


More information about the pypy-commit mailing list