Author: Armin Rigo <[email protected]>
Branch: stmgc-c7
Changeset: r69949:2d525f862189
Date: 2014-03-14 09:27 +0100
http://bitbucket.org/pypy/pypy/changeset/2d525f862189/

Log:    detail

diff --git a/rpython/translator/stm/src_stm/stmgcintf.h 
b/rpython/translator/stm/src_stm/stmgcintf.h
--- a/rpython/translator/stm/src_stm/stmgcintf.h
+++ b/rpython/translator/stm/src_stm/stmgcintf.h
@@ -52,7 +52,7 @@
        (in which case pypy_stm_nursery_low_fill_mark is set to 0)
     */
     uintptr_t current = (uintptr_t)STM_SEGMENT->nursery_current;
-    return current >= pypy_stm_nursery_low_fill_mark;
+    return current > pypy_stm_nursery_low_fill_mark;
 }
 
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to