Author: Remi Meier <[email protected]>
Branch: 
Changeset: r1665:8fc7cb5d20c3
Date: 2015-02-25 16:46 +0100
http://bitbucket.org/pypy/stmgc/changeset/8fc7cb5d20c3/

Log:    c8: fix for not executing major gcs when requested

diff --git a/c8/stm/core.c b/c8/stm/core.c
--- a/c8/stm/core.c
+++ b/c8/stm/core.c
@@ -873,7 +873,8 @@
 
 void stm_commit_transaction(void)
 {
-    exec_local_finalizers();
+    major_collection_if_requested();
+    //exec_local_finalizers(); done by ^^^
 
     assert(!_has_mutex());
     assert(STM_PSEGMENT->safe_point == SP_RUNNING);
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to