[pypy-commit] extradoc extradoc: A little bit more text

alex_gaynor noreply at buildbot.pypy.org
Mon Oct 14 21:36:49 CEST 2013


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: extradoc
Changeset: r5078:6ae5b6468121
Date: 2013-10-14 21:36 +0200
http://bitbucket.org/pypy/extradoc/changeset/6ae5b6468121/

Log:	A little bit more text

diff --git a/blog/draft/incremental-gc.rst b/blog/draft/incremental-gc.rst
--- a/blog/draft/incremental-gc.rst
+++ b/blog/draft/incremental-gc.rst
@@ -92,7 +92,8 @@
 
 The trick we used in PyPy is to consider minor collections as part of
 the whole, rather than focus only on major collections.  The existing
-minimark GC had always used a "write barrier" to do its job, like any
+minimark GC had always used a "write barrier" (a piece of code run every time
+you set or get from an object or array) to do its job, like any
 generational GC.  This write barrier is used to detect when an old
 object (outside the nursery) is modified to point to a young object
 (inside the nursery), which is essential information for minor


More information about the pypy-commit mailing list