Author: Remi Meier <[email protected]>
Branch:
Changeset: r1241:70c403598485
Date: 2014-05-22 17:57 +0200
http://bitbucket.org/pypy/stmgc/changeset/70c403598485/
Log: completer fix... (I should stop now)
diff --git a/c7/stm/nursery.c b/c7/stm/nursery.c
--- a/c7/stm/nursery.c
+++ b/c7/stm/nursery.c
@@ -281,7 +281,8 @@
TREE_LOOP_FORWARD(*pseg->young_outside_nursery, item) {
assert(!_is_in_nursery((object_t *)item->addr));
/* mark slot as unread */
- ((stm_read_marker_t *)(item->addr >> 4))->rm = 0;
+ ((struct stm_read_marker_s *)
+ (pseg->pub.segment_base + (item->addr >> 4)))->rm = 0;
_stm_large_free(stm_object_pages + item->addr);
} TREE_LOOP_END;
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit