diff options
Diffstat (limited to 'libguile/gc.c')
-rw-r--r-- | libguile/gc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index c414c7552..9fe4e0a8a 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -609,6 +609,10 @@ SCM_DEFINE (scm_free_list_length, "free-list-length", 0, 0, 0, #ifdef GUILE_DEBUG_FREELIST +/* Non-zero if freelist debugging is in effect. Set this via + `gc-set-debug-check-freelist!'. */ +static int scm_debug_check_freelist = 0; + /* Number of calls to SCM_NEWCELL since startup. */ static unsigned long scm_newcell_count; static unsigned long scm_newcell2_count; |