From b474ac33ee0e47ab14306c218cb060667f9af2db Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sat, 16 Aug 2008 13:27:17 -0300 Subject: [PATCH] Remove comments about removed variables. --- libguile/private-gc.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/libguile/private-gc.h b/libguile/private-gc.h index 26e980cb2..744bc8372 100644 --- a/libguile/private-gc.h +++ b/libguile/private-gc.h @@ -32,18 +32,6 @@ * 64 bit machine. The units of the _SIZE parameters are bytes. * Cons pairs and object headers occupy one heap cell. * - * SCM_INIT_HEAP_SIZE is the initial size of heap. If this much heap is - * allocated initially the heap will grow by half its current size - * each subsequent time more heap is needed. - * - * If SCM_INIT_HEAP_SIZE heap cannot be allocated initially, SCM_HEAP_SEG_SIZE - * will be used, and the heap will grow by SCM_HEAP_SEG_SIZE when more - * heap is needed. SCM_HEAP_SEG_SIZE must fit into type size_t. This code - * is in scm_init_storage() and alloc_some_heap() in sys.c - * - * If SCM_INIT_HEAP_SIZE can be allocated initially, the heap will grow by - * SCM_EXPHEAP(scm_heap_size) when more heap is needed. - * * SCM_MIN_HEAP_SEG_SIZE is minimum size of heap to accept when more heap * is needed. */