diff options
Diffstat (limited to 'libguile/gc.c')
-rw-r--r-- | libguile/gc.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index 8bb5312ee..d3c53c748 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -208,17 +208,10 @@ scm_t_c_hook scm_after_sweep_c_hook; scm_t_c_hook scm_after_gc_c_hook; -/* scm_mtrigger - * is the number of bytes of malloc allocation needed to trigger gc. - */ -unsigned long scm_mtrigger; - /* GC Statistics Keeping */ -unsigned long scm_mallocated = 0; unsigned long scm_gc_ports_collected = 0; - static unsigned long protected_obj_count = 0; @@ -673,8 +666,6 @@ scm_init_storage () while (j) scm_sys_protects[--j] = SCM_BOOL_F; - j = SCM_HEAP_SEG_SIZE; - #if 0 /* We can't have a cleanup handler since we have no thread to run it in. */ |