diff --git a/README.md b/README.md index 0d7c4813..73a4900b 100644 --- a/README.md +++ b/README.md @@ -51,21 +51,6 @@ The [Development Guide](docs/Development.md) contains instructions for hacking o Finally, if you need a place to start learning the Scheme language try a classic textbook such as [Structure and Interpretation of Computer Programs](https://mitpress.mit.edu/sicp/full-text/book/book.html). -References ----------- - -- [CONS Should Not CONS Its Arguments, Part II: Cheney on the M.T.A.](http://www.pipeline.com/~hbaker1/CheneyMTA.html), by Henry Baker -- [CHICKEN Scheme](http://www.call-cc.org/) -- [Chibi Scheme](https://github.com/ashinn/chibi-scheme) -- [Compiling Scheme to C with closure conversion](http://matt.might.net/articles/compiling-scheme-to-c/), by Matt Might -- Implementing an on-the-fly garbage collector for Java, by Domani et al -- [Lisp in Small Pieces](http://pagesperso-systeme.lip6.fr/Christian.Queinnec/WWW/LiSP.html), by Christian Queinnec -- Portable, Unobtrusive Garbage Collection for Multiprocessor Systems, by Damien Doligez and Georges Gonthier -- [R5RS Scheme Specification](http://www.schemers.org/Documents/Standards/R5RS/HTML/) -- [R7RS Scheme Specification](http://trac.sacrideo.us/wg/wiki) -- [Structure and Interpretation of Computer Programs](https://mitpress.mit.edu/sicp/full-text/book/book.html), by Harold Abelson and Gerald Jay Sussman -- [The 90 minute Scheme to C compiler](http://churchturing.org/y/90-min-scc.pdf), by Marc Feeley - License ------- Copyright (C) 2014 [Justin Ethier](http://github.com/justinethier). diff --git a/docs/Garbage-Collector.md b/docs/Garbage-Collector.md index d68414bf..ee9bb3d5 100644 --- a/docs/Garbage-Collector.md +++ b/docs/Garbage-Collector.md @@ -64,6 +64,8 @@ typedef struct gc_thread_data_t gc_thread_data; ETC -# References +# Further Reading -TODO: include papers, etc here and link to bullet numbers above +- [CONS Should Not CONS Its Arguments, Part II: Cheney on the M.T.A.](http://www.pipeline.com/~hbaker1/CheneyMTA.html), by Henry Baker +- Implementing an on-the-fly garbage collector for Java, by Domani et al +- Portable, Unobtrusive Garbage Collection for Multiprocessor Systems, by Damien Doligez and Georges Gonthier