From 12eb0e0c42dc8c689b7bf028f18a011f061d5e60 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Mon, 5 Aug 2024 14:47:32 +0200 Subject: [PATCH] Update documentation --- doc/README.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/doc/README.md b/doc/README.md index fc5348ddb..c14a537fe 100644 --- a/doc/README.md +++ b/doc/README.md @@ -7,17 +7,6 @@ implementations of the Whippet API with differing performance characteristics and which impose different requirements on the embedder. - - [Semi-space collector (semi)](./collector-semi.md): For - single-threaded embedders who are not too tight on memory. - - [Parallel copying collector (pcc)](./collector-pcc.md): Like semi, - but with support for multiple mutator threads. Faster than semi if - multiple cores are available at collection-time. - - [Whippet collector (whippet)](./collector-whippet.md): - Immix-inspired collector. Optionally parallel, conservative (stack - and/or heap), and/or generational. - - [Boehm-Demers-Weiser collector (bdw)](./collector-bdw.md): - Conservative mark-sweep collector, implemented by - Boehm-Demers-Weiser library. * [Guile](./doc/guile.md): Some notes on a potential rebase of Guile on top of Whippet.