Fixing heap checks when using header magic or tracking alloc sources.

This commit is contained in:
Alex Shinn 2011-01-10 16:51:48 +09:00
parent 8d13b7ace8
commit a82a13094d

2
gc.c
View file

@ -8,7 +8,7 @@
#include <sys/mman.h>
#endif
#define SEXP_MINIMUM_OBJECT_SIZE (sexp_heap_align(sexp_sizeof(pair)))
#define SEXP_MINIMUM_OBJECT_SIZE (sexp_heap_align(sexp_sizeof(flonum)))
#if SEXP_USE_GLOBAL_HEAP
sexp_heap sexp_global_heap;