diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-17 16:30:49 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-17 16:30:49 +0000 |
commit | e0df42e01467dfb70498821114b581c02184c70c (patch) | |
tree | d739e422c8f71d679c42a9137bfa92a3a3cf8a5d /rsyslog.h | |
parent | ed0363210c34002e5cfbab553506573f5b8a13a5 (diff) | |
download | rsyslog-e0df42e01467dfb70498821114b581c02184c70c.tar.gz rsyslog-e0df42e01467dfb70498821114b581c02184c70c.tar.xz rsyslog-e0df42e01467dfb70498821114b581c02184c70c.zip |
fixed sync issue on shutdown process if need to persist pure memory queue
to disk
Diffstat (limited to 'rsyslog.h')
-rw-r--r-- | rsyslog.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ typedef enum rsRetVal_ rsRetVal; /**< friendly type for global return value */ #define CHKiRet_Hdlr(code) if((iRet = code) != RS_RET_OK) /* macro below is used in conjunction with CHKiRet_Hdlr, else use ABORT_FINALIZE */ #define FINALIZE goto finalize_it; -#if 1 /* DEV debug: set to 1 to get a rough call trace -- rgerhards, 2008-01-13 */ +#if 0 /* DEV debug: set to 1 to get a rough call trace -- rgerhards, 2008-01-13 */ # define DEFiRet dbgprintf("Entering %s, line %d\n", __FILE__, __LINE__); rsRetVal iRet = RS_RET_OK #else # define DEFiRet rsRetVal iRet = RS_RET_OK |