From d8a96d17b78ee7842cbff30808c905b8aa4f0149 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 11 Dec 2015 21:16:17 -0500 Subject: [PATCH] Added header comment --- gc.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gc.c b/gc.c index 35b25f8e..66556041 100644 --- a/gc.c +++ b/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 - - Goals of this project: - - write algorithms - - add test cases - - integrate with types - - integrate with cyclone - - extend to tri-color marking an on-the-fly collection - - etc... +/** + * Cyclone Scheme + * Copyright (c) 2015, Justin Ethier + * All rights reserved. + * + * Primary garbage collector used by the Cyclone runtime. + * Based on the tracing GC algorithm 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. */ #include "cyclone/types.h"