diff --git a/src/main.c b/src/main.c index 8b1b531b6c4688120bd00e44ffcb6ea68de4aa2f..0c434caaa1e7469528e12acd01153a38b1b77a6c 100644 --- a/src/main.c +++ b/src/main.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: main.c,v 1.211 2004/09/30 11:57:53 mast Exp $ +|| $Id: main.c,v 1.212 2004/09/30 14:07:19 mast Exp $ */ #include "global.h" @@ -1067,6 +1067,12 @@ void low_exit_main(void) * another gc so that we don't report the blocks again in the low * level dmalloc reports. */ +#if 1 + /* It can be a good idea to disable this to leave the blocks + * around to be reported by an external memchecker like valgrind. + * Ideally we should only free the svalues inside these things but + * leave the blocks themselves. */ + #define ZAP_LINKED_LIST_LEAKS(TYPE, START, STATICS) do { \ struct TYPE *x, *next; \ for (x = START; x; x = next) { \ @@ -1102,6 +1108,8 @@ void low_exit_main(void) /* If we stumble on the real refs whose refcounts we've zapped * above we should try to handle it gracefully. */ gc_external_refs_zapped = 1; +#endif + #endif do_gc (NULL, 1);