summaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-27 14:12:26 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-27 14:12:26 +0000
commit58bb094fbaf6fac3ccd4db802db1cfcb37f3d01c (patch)
tree115f7e47fee80a41054b81dd361e92ad224336cf /debug.c
parent42f8e09d07e9a384d17a675a20117677600eb0f5 (diff)
downloadrsyslog-58bb094fbaf6fac3ccd4db802db1cfcb37f3d01c.tar.gz
rsyslog-58bb094fbaf6fac3ccd4db802db1cfcb37f3d01c.tar.xz
rsyslog-58bb094fbaf6fac3ccd4db802db1cfcb37f3d01c.zip
bugfix: during queue shutdown, an assert invalidly triggered when the
primary queue's DA worker was terminated while the DA queue's regular worker was still executing. This could result in a segfault during shutdown. tracker: http://bugzilla.adiscon.com/show_bug.cgi?id=41
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index 5814509e..74a5d9dd 100644
--- a/debug.c
+++ b/debug.c
@@ -57,7 +57,7 @@ static dbgThrdInfo_t *dbgGetThrdInfo(void);
/* static data (some time to be replaced) */
int Debug; /* debug flag - read-only after startup */
int debugging_on = 0; /* read-only, except on sig USR1 */
-static int bLogFuncFlow = 1; /* shall the function entry and exit be logged to the debug log? */
+static int bLogFuncFlow = 0; /* shall the function entry and exit be logged to the debug log? */
static int bLogAllocFree = 0; /* shall calls to (m/c)alloc and free be logged to the debug log? */
static int bPrintFuncDBOnExit = 0; /* shall the function entry and exit be logged to the debug log? */
static int bPrintMutexAction = 0; /* shall mutex calls be printed to the debug log? */