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:
parent
283721b39a
commit
7b85284a89
3 changed files with 530 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue