aboutsummaryrefslogtreecommitdiffstats
path: root/mps/code/root.c
diff options
context:
space:
mode:
authorRichard Brooksby2002-06-07 16:47:14 +0100
committerRichard Brooksby2002-06-07 16:47:14 +0100
commit97075f705350901f5ff46387f658ab459a4cd73f (patch)
tree4349ad5e7200f072a800f48749d57f3625757e7e /mps/code/root.c
parent8b990e4858b6f6d735de07a241b1785702bb16e7 (diff)
downloademacs-97075f705350901f5ff46387f658ab459a4cd73f.tar.gz
emacs-97075f705350901f5ff46387f658ab459a4cd73f.zip
Updating cross references to design documents to html style, to go with master/design document tree.
Copied from Perforce Change: 29897 ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/root.c')
-rw-r--r--mps/code/root.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mps/code/root.c b/mps/code/root.c
index 736edc04e19..66cf2795db5 100644
--- a/mps/code/root.c
+++ b/mps/code/root.c
@@ -5,8 +5,8 @@
5 * 5 *
6 * .purpose: This is the implementation of the root datatype. 6 * .purpose: This is the implementation of the root datatype.
7 * 7 *
8 * .design: For design, see design.mps.root and 8 * .design: For design, see <design/root/> and
9 * design.mps.root-interface. */ 9 * <design/root/>-interface. */
10 10
11#include "mpm.h" 11#include "mpm.h"
12 12
@@ -154,7 +154,7 @@ Bool RootCheck(Root root)
154 * RootCreate* set up the appropriate union member, and call the generic 154 * RootCreate* set up the appropriate union member, and call the generic
155 * create function to do the actual creation 155 * create function to do the actual creation
156 * 156 *
157 * See design.mps.root.init for initial value. */ 157 * See <design/root/#init> for initial value. */
158 158
159static Res rootCreate(Root *rootReturn, Arena arena, 159static Res rootCreate(Root *rootReturn, Arena arena,
160 Rank rank, RootMode mode, RootVar type, 160 Rank rank, RootMode mode, RootVar type,
@@ -188,7 +188,7 @@ static Res rootCreate(Root *rootReturn, Arena arena,
188 root->protBase = (Addr)0; 188 root->protBase = (Addr)0;
189 root->protLimit = (Addr)0; 189 root->protLimit = (Addr)0;
190 190
191 /* See design.mps.arena.root-ring */ 191 /* See <design/arena/#root-ring> */
192 RingInit(&root->arenaRing); 192 RingInit(&root->arenaRing);
193 193
194 root->serial = globals->rootSerial; 194 root->serial = globals->rootSerial;