From 3edcf419a96b8333f72f5fd8dccd56867dac8bda Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 21 Jan 2016 22:43:42 -0500 Subject: [PATCH] Link to new images --- docs/Garbage-Collector.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/Garbage-Collector.md b/docs/Garbage-Collector.md index f1cfa9fb..cbebe4ae 100644 --- a/docs/Garbage-Collector.md +++ b/docs/Garbage-Collector.md @@ -165,14 +165,20 @@ The collector swaps the values of the clear color (white) and the mark color (bl ### Mark The collector transitions to sync 2 and then async. At this point it marks the global variables and waits for the mutators to also transition to async. +Initial object graph + ### Trace The collector finds all live objects using a breadth-first search and marks them black. +Initial object graph + ### Sweep The collector scans the heap and frees memory used by all white objects. If the heap is still low on memory at this point the heap will be increased in size. Also, to ensure a complete collection data for any terminated threads is not freed until now. +Initial object graph + ### Resting The collector cycle is complete and it rests until it is triggered again.