From a6db88494787585bf1d5d32643b4ffb3ed90b67e Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Wed, 9 Dec 2020 13:50:15 -0800 Subject: [PATCH] Add a tiny bit of documentation for newpage(). No functional change. modified: src/storage.c --- src/storage.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/storage.c b/src/storage.c index f13faac..9fb218b 100644 --- a/src/storage.c +++ b/src/storage.c @@ -272,10 +272,17 @@ LispPTR dremove(LispPTR x, LispPTR l) { Created : Oct. 12, 1987 Takeshi Shimizu Changed : Oct. 13, 1987 take - OCt. 20, 1987 take + Oct. 20, 1987 take */ +/** + * Makes an entry in the FPtoVP table for the newly created page. + * Ensures that the FPtoVP table has room for the additional entry, + * extending the FPtoVP table by an additional page, if necessary, + * such that it is maintained as a contiguous region of file pages. + */ /*****************************************************************/ + LispPTR newpage(LispPTR base) { #ifdef BIGVM register unsigned int vp; /* Virtual Page we're creating */