From 3f8526f3c55a90436b52df9a0bcb754ab0fac33b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 27 Oct 2015 02:50:04 -0400 Subject: [PATCH] Updated comments --- gc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gc.c b/gc.c index 20983ae1..da300c8f 100644 --- a/gc.c +++ b/gc.c @@ -400,7 +400,7 @@ static const int gc_color_blue = 3; static int gc_status_coll; static int gc_stage; -// Mutator functions +// GC functions called by the Mutator threads void gc_mut_update() { @@ -424,7 +424,7 @@ void gc_mut_cooperate() // statusm = statusc } -// Collector functions -// Collection cycle +// GC functions calld by the Collector thread +// GC Collection cycle // END tri-color marking section