From 1cf6d329b729abfa380dc7fda83b923a8f0f573e Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 21 Jan 2016 23:22:57 -0500 Subject: [PATCH] WIP --- docs/Garbage-Collector.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Garbage-Collector.md b/docs/Garbage-Collector.md index a33e2641..6ecd6957 100644 --- a/docs/Garbage-Collector.md +++ b/docs/Garbage-Collector.md @@ -208,7 +208,7 @@ In addition when a mutator transitions to async it will: Cyclone's mutators cooperate after each minor GC, for two reasons. Minor GC's are frequent and immediately afterwards all of the mutator's live objects can be marked because they are on the heap. -## Mark Gray +### Mark Gray Mutators call this function to add an object to their mark buffer. @@ -238,7 +238,7 @@ The collector calls this function to mark an object black and mark all of the ob mark(obj) = mark_color -## Empty Collector Mark Stack +### Empty Collector Mark Stack This function removes and marks each object on the collector's mark stack.