From f91f77e64edab9e6a2ea8cffd005e2e4f3542f3c Mon Sep 17 00:00:00 2001 From: Michael Livshin Date: Mon, 21 Aug 2000 10:06:45 +0000 Subject: [PATCH] * gc.h (SCM_GC_CARD_N_CELLS): change to be a nice non-confusing constant. --- libguile/gc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/gc.h b/libguile/gc.h index 12b17805f..48d2611e5 100644 --- a/libguile/gc.h +++ b/libguile/gc.h @@ -82,7 +82,7 @@ typedef scm_cell * SCM_CELLPTR; #endif /* def _UNICOS */ #define SCM_GC_CARD_N_HEADER_CELLS 1 -#define SCM_GC_CARD_N_CELLS (8 * sizeof (scm_cell) * 4) +#define SCM_GC_CARD_N_CELLS 256 #define SCM_GC_CARD_SIZE (SCM_GC_CARD_N_CELLS * sizeof (scm_cell)) #define SCM_GC_CARD_N_DATA_CELLS (SCM_GC_CARD_N_CELLS - SCM_GC_CARD_N_HEADER_CELLS)