From: Nick Mathewson Date: Fri, 30 Nov 2007 19:07:11 +0000 (+0000) Subject: r16879@catbus: nickm | 2007-11-30 14:07:05 -0500 X-Git-Tag: tor-0.2.0.13-alpha~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fe70f4c69b80c12db5ad4f0cedac1a81ecd867a;p=thirdparty%2Ftor.git r16879@catbus: nickm | 2007-11-30 14:07:05 -0500 Log *useful* information from dmalloc. (Unfreed pointers, not total of freed and unfreed). svn:r12616 --- diff --git a/src/common/util.c b/src/common/util.c index ffbd0e6c0b..a1e0448bc5 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -240,8 +240,11 @@ tor_log_mallinfo(int severity) (void)severity; #endif #ifdef USE_DMALLOC - dmalloc_log_stats(); - // too wordy dmalloc_log_unfreed(); + dmalloc_log_changed(0, /* Since the program started. */ + 1, /* Log info about non-freed pointers. */ + 0, /* Do not log info about freed pointers. */ + 0 /* Do not log individual pointers. */ + ); #endif }