summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Leblond <eric@inl.fr>2008-11-30 21:06:46 +0100
committerEric Leblond <eric@inl.fr>2008-12-09 01:19:25 +0100
commitc2d686d652e10232a5472e5675899db79e5cf14f (patch)
tree6a3f78ac849803e3c584ebbaced44a4cbeebb886 /src
parent712bb639935e43a31fcc0b8f6c38b35f459df30a (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/ulogd.c4
1 files changed, 4 insertions, 0 deletions
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);