1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* gc.h (SCM_GC_CARD_N_CELLS): change to be a nice non-confusing

constant.
This commit is contained in:
Michael Livshin 2000-08-21 10:06:45 +00:00
parent 6ad9007abf
commit f91f77e64e

View file

@ -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)