diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-27 14:12:26 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-27 14:12:26 +0000 |
commit | 58bb094fbaf6fac3ccd4db802db1cfcb37f3d01c (patch) | |
tree | 115f7e47fee80a41054b81dd361e92ad224336cf /debug.c | |
parent | 42f8e09d07e9a384d17a675a20117677600eb0f5 (diff) | |
download | rsyslog-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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? */ |