From 53dd1828194d1ef91ce49f795aad3f19de583267 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Sat, 13 Feb 2016 02:38:53 -0500 Subject: [PATCH] Revisions --- docs/Garbage-Collector.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/Garbage-Collector.md b/docs/Garbage-Collector.md index 191d4cdf..e32e9eee 100644 --- a/docs/Garbage-Collector.md +++ b/docs/Garbage-Collector.md @@ -65,8 +65,6 @@ The heap is locked during allocation and sweep operations to protect against con If there is not enough free memory to fulfill a request a new page is allocated and added to the heap. This is the only choice, unfortunately. The collection process is asynchronous so memory cannot be freed immediately to make room. -Cyclone's heap is based on the implementation from Chibi scheme. - ## Thread Data At runtime Cyclone passes the current continuation, number of arguments, and a thread data parameter to each compiled C function. Thread data is a structure that contains all of the necessary information to perform collections, including: