mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 08:47:35 +02:00
Revise header comments
This commit is contained in:
parent
f0f071d3e2
commit
79e21b64e0
1 changed files with 4 additions and 4 deletions
8
gc.c
8
gc.c
|
@ -7,13 +7,13 @@
|
|||
*
|
||||
* Heap garbage collector used by the Cyclone runtime for major collections.
|
||||
*
|
||||
* Tracing GC algorithm is based on the one from "Implementing an on-the-fly
|
||||
* garbage collector for Java", by Domani et al.
|
||||
* Concurrent Mark-Sweep GC algorithm is based on the one from
|
||||
* "Implementing an on-the-fly * garbage collector for Java", by Domani et al.
|
||||
*
|
||||
* The heap implementation (alloc / sweep, etc) is based on code from Chibi Scheme.
|
||||
* 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" (but without the copying collector).
|
||||
* on the stack, based on "Cheney on the MTA".
|
||||
*/
|
||||
|
||||
#include <ck_array.h>
|
||||
|
|
Loading…
Add table
Reference in a new issue