mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-17 09:47:33 +02:00
Added header comment
This commit is contained in:
parent
166f67c7d3
commit
d8a96d17b7
1 changed files with 10 additions and 10 deletions
20
gc.c
20
gc.c
|
@ -1,13 +1,13 @@
|
||||||
/* A basic mark-sweep GC
|
/**
|
||||||
As of now, the GC code is based off the implementation from chibi scheme
|
* Cyclone Scheme
|
||||||
|
* Copyright (c) 2015, Justin Ethier
|
||||||
Goals of this project:
|
* All rights reserved.
|
||||||
- write algorithms
|
*
|
||||||
- add test cases
|
* Primary garbage collector used by the Cyclone runtime.
|
||||||
- integrate with types
|
* Based on the tracing GC algorithm from:
|
||||||
- integrate with cyclone
|
* "Implementing an on-the-fly garbage collector for Java", by Domani et al.
|
||||||
- extend to tri-color marking an on-the-fly collection
|
*
|
||||||
- etc...
|
* The heap implementation (alloc / sweep, etc) is based on code from Chibi Scheme.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "cyclone/types.h"
|
#include "cyclone/types.h"
|
||||||
|
|
Loading…
Add table
Reference in a new issue