From: Eric Leblond Date: Sun, 30 Nov 2008 20:06:46 +0000 (+0100) Subject: Add valgrind compilation option. X-Git-Tag: ulogd-2.0.0beta3~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2d686d652e10232a5472e5675899db79e5cf14f;p=thirdparty%2Fulogd2.git Add valgrind compilation option. Valgrind messages are obscur when the plugins are unloaded. This patch adds a macro that can be used to desactivate unloading. To use it, you have to specify 'CPPFLAGS=-DDEBUG_VALGRIND' on configure line. --- diff --git a/src/ulogd.c b/src/ulogd.c index 1a1f6af..badd7bd 100644 --- a/src/ulogd.c +++ b/src/ulogd.c @@ -985,6 +985,7 @@ static void stop_pluginstances() } } +#ifndef DEBUG_VALGRIND static void unload_plugins() { struct ulogd_plugin_handle *ph, *nph; @@ -993,6 +994,7 @@ static void unload_plugins() free(ph); } } +#endif static void stop_stack() { @@ -1015,7 +1017,9 @@ static void sigterm_handler(int signal) stop_stack(); +#ifndef DEBUG_VALGRIND unload_plugins(); +#endif if (logfile != NULL && logfile != stdout) { fclose(logfile);