From 79e21b64e0d99c2e93e4322636b5715542c391b8 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 8 Aug 2018 17:25:06 -0400 Subject: [PATCH] Revise header comments --- gc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gc.c b/gc.c index 59f70993..d5514dd6 100644 --- a/gc.c +++ b/gc.c @@ -7,13 +7,13 @@ * * Heap garbage collector used by the Cyclone runtime for major collections. * - * Tracing GC algorithm is based on the one from "Implementing an on-the-fly - * garbage collector for Java", by Domani et al. + * Concurrent Mark-Sweep GC algorithm is based on the one from + * "Implementing an on-the-fly * garbage collector for Java", by Domani et al. * - * The heap implementation (alloc / sweep, etc) is based on code from Chibi Scheme. + * Data structures for the heap implementation are based on code from Chibi Scheme. * * Note there is also a minor GC (in runtime.c) that collects objects allocated - * on the stack, based on "Cheney on the MTA" (but without the copying collector). + * on the stack, based on "Cheney on the MTA". */ #include