[pypy-commit] pypy stmgc-c7: detail

arigo noreply at buildbot.pypy.org
Fri Mar 14 09:28:29 CET 2014


Author: Armin Rigo <arigo at tunes.org>
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;
 }
 
 


More information about the pypy-commit mailing list