diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 17:36:19 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-29 17:36:19 +0000 |
commit | e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795 (patch) | |
tree | 18d6567c396b258ca4fb373421168de1588a640a /debug.c | |
parent | 7adc80509c80239802716233f8168d566e278873 (diff) | |
download | rsyslog-e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795.tar.gz rsyslog-e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795.tar.xz rsyslog-e12e53cfbb8b8764dcbd4da3ff143ad9d46a8795.zip |
added ability to re-enqueue objects into the queue when a worker thread is
cancelled
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ int Debug; /* debug flag - read-only after startup */ int debugging_on = 0; /* read-only, except on sig USR1 */ static int bLogFuncFlow = 0; /* shall the function entry and exit 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? */ +static int bPrintMutexAction = 1; /* shall mutex calls be printed to the debug log? */ static int bPrintTime = 1; /* print a timestamp together with debug message */ static char *pszAltDbgFileName = NULL; /* if set, debug output is *also* sent to here */ static FILE *altdbg = NULL; /* and the handle for alternate debug output */ |