From 5b3280526f99857cb0d72a6b0fcb69437ea6bc7d Mon Sep 17 00:00:00 2001 From: Richard Brooksby Date: Fri, 9 Jun 2023 14:49:32 +0100 Subject: [PATCH] Clarifying comments in response to review --- mps/code/extcon.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mps/code/extcon.c b/mps/code/extcon.c index 430a4259a4b..4bd04a14b22 100644 --- a/mps/code/extcon.c +++ b/mps/code/extcon.c @@ -29,9 +29,10 @@ /* Number of test objects to allocate */ #define N_TESTOBJ 100 -/* Number of dylan "slots" in each test object */ +/* The number of slots determines the size of each object */ #define N_SLOT_TESTOBJ 10000 -/* This is the number of bytes the initial arena is bigger than the test object size */ +/* The initial arena size is requested to be bigger the test object by + this many bytes */ #define SIZEDIFF 10 /* Set alignment to mps_word_ts */