1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-27 13:30:31 +02:00

Update documentation

This commit is contained in:
Andy Wingo 2024-08-05 14:47:32 +02:00
parent 1925f84d3a
commit 12eb0e0c42

View file

@ -7,17 +7,6 @@
implementations of the Whippet API with differing performance implementations of the Whippet API with differing performance
characteristics and which impose different requirements on the characteristics and which impose different requirements on the
embedder. 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 * [Guile](./doc/guile.md): Some notes on a potential rebase of Guile on
top of Whippet. top of Whippet.