Cyclone Scheme  0.28.0

◆ GC_BLOCK_BITS

#define GC_BLOCK_BITS   5

Cyclone Scheme https://github.com/justinethier/cyclone

Copyright (c) 2015-2016, Justin Ethier All rights reserved.

Heap garbage collector used by the Cyclone runtime for major collections.

Concurrent Mark-Sweep GC algorithm is based on the one from "Implementing an on-the-fly garbage collector for Java", by Domani et al.

Data structures for the heap implementation are based on code from Chibi Scheme.

Note there is also a minor GC (in runtime.c) that collects objects allocated on the stack, based on "Cheney on the MTA".