Author: Maciej Fijalkowski <[email protected]>
Branch: incremental-gc
Changeset: r67359:5419d0bfff1f
Date: 2013-10-14 16:03 +0200
http://bitbucket.org/pypy/pypy/changeset/5419d0bfff1f/
Log: make it signed
diff --git a/rpython/memory/gc/incminimark.py b/rpython/memory/gc/incminimark.py
--- a/rpython/memory/gc/incminimark.py
+++ b/rpython/memory/gc/incminimark.py
@@ -1779,7 +1779,7 @@
estimate_from_nursery = self.nursery_surviving_size * 2
if estimate_from_nursery > estimate:
estimate = estimate_from_nursery
- self.visit_all_objects_step(estimate)
+ self.visit_all_objects_step(intmask(estimate))
# XXX A simplifying assumption that should be checked,
# finalizers/weak references are rare and short which means that
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit