From a5aa777c7bf04e604ba77d8963bac5ff80881eed Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Sat, 17 Sep 2022 19:01:14 -0700 Subject: [PATCH] src/runtime: add a few more docs about the garbage collector --- src/runtime/gc_conservative.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/runtime/gc_conservative.go b/src/runtime/gc_conservative.go index 7bc984ca..7cd61e88 100644 --- a/src/runtime/gc_conservative.go +++ b/src/runtime/gc_conservative.go @@ -25,7 +25,9 @@ package runtime // heapStart..metadataStart. // // More information: +// https://aykevl.nl/2020/09/gc-tinygo // https://github.com/micropython/micropython/wiki/Memory-Manager +// https://github.com/micropython/micropython/blob/master/py/gc.c // "The Garbage Collection Handbook" by Richard Jones, Antony Hosking, Eliot // Moss.