From c2d686d652e10232a5472e5675899db79e5cf14f Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Sun, 30 Nov 2008 21:06:46 +0100 Subject: 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. --- src/ulogd.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') 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); -- cgit v1.2.3