Updated comments

This commit is contained in:
Justin Ethier 2015-10-27 02:50:04 -04:00
parent d69f3c89ca
commit 3f8526f3c5

6
gc.c
View file

@ -400,7 +400,7 @@ static const int gc_color_blue = 3;
static int gc_status_coll; static int gc_status_coll;
static int gc_stage; static int gc_stage;
// Mutator functions // GC functions called by the Mutator threads
void gc_mut_update() void gc_mut_update()
{ {
@ -424,7 +424,7 @@ void gc_mut_cooperate()
// statusm = statusc // statusm = statusc
} }
// Collector functions // GC functions calld by the Collector thread
// Collection cycle // GC Collection cycle
// END tri-color marking section // END tri-color marking section