1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-14 01:30:19 +02:00

Add mark-sweep collector

This commit is contained in:
Andy Wingo 2022-03-07 10:23:05 +01:00
parent 283721b39a
commit 7b85284a89
3 changed files with 530 additions and 2 deletions

View file

@ -42,10 +42,12 @@
#include <stdlib.h>
#include <sys/time.h>
#ifdef GC_BDW
#if defined(GC_BDW)
#include "bdw.h"
#elif defined(GC_SEMI)
#include "semi.h"
#elif defined(GC_MARK_SWEEP)
#include "mark-sweep.h"
#else
#error unknown gc
#endif