[pypy-svn] r38723 - pypy/dist/pypy/doc

pedronis at codespeak.net pedronis at codespeak.net
Tue Feb 13 17:27:19 CET 2007


Author: pedronis
Date: Tue Feb 13 17:27:16 2007
New Revision: 38723

Modified:
   pypy/dist/pypy/doc/stackless.txt
Log:
fix XXX reference with a link to D07.1 report



Modified: pypy/dist/pypy/doc/stackless.txt
==============================================================================
--- pypy/dist/pypy/doc/stackless.txt	(original)
+++ pypy/dist/pypy/doc/stackless.txt	Tue Feb 13 17:27:16 2007
@@ -308,12 +308,14 @@
 frame objects in the heap of a process before we can resume execution of
 these newly built frames.  We must recreate a corresponding chain of
 interpreter-level frames.  To this end, we have inserted a few *named
-resume points* (see XXX) in the Python interpreter of PyPy.  This is the
+resume points* (see 3.2.4, in `D07.1 Massive Parallelism and Translation Aspects`_) in the Python interpreter of PyPy.  This is the
 motivation for implementing the interpreter-level primitives
 ``resume_state_create()`` and ``resume_state_invoke()``, the powerful
 interface that allows an RPython program to artifically rebuild a chain
 of calls in a reflective way, completely from scratch, and jump to it.
 
+.. _`D07.1 Massive Parallelism and Translation Aspects`: http://codespeak.net/pypy/extradoc/eu-report/D07.1_Massive_Parallelism_and_Translation_Aspects-2006-12-15.pdf
+
 Example
 ~~~~~~~
 



More information about the Pypy-commit mailing list