1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 22:10:21 +02:00

switch off debugging flag that was mistakenly left on

* libguile/gc.c (HEURISTICS_DEBUG): Whoops, switch this off.
This commit is contained in:
Andy Wingo 2011-11-29 10:17:07 +01:00
parent 6360beb28a
commit d1c036248c

View file

@ -835,7 +835,7 @@ adjust_gc_frequency (void * hook_data SCM_UNUSED,
image_size = get_image_size (); image_size = get_image_size ();
bytes_alloced = GC_get_total_bytes (); bytes_alloced = GC_get_total_bytes ();
#define HEURISTICS_DEBUG 1 #define HEURISTICS_DEBUG 0
#if HEURISTICS_DEBUG #if HEURISTICS_DEBUG
fprintf (stderr, "prev image / alloced: %lu / %lu\n", prev_image_size, prev_bytes_alloced); fprintf (stderr, "prev image / alloced: %lu / %lu\n", prev_image_size, prev_bytes_alloced);