summaryrefslogtreecommitdiffstats
path: root/threads.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2007-12-25 15:49:57 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2007-12-25 15:49:57 +0000
commit7af2c0a66b03db92a9ca1faae6c37c8fdc666c0e (patch)
treeb555341bfafcdf2bc1ffb6046c8ffc03a16a00f6 /threads.c
parent55fa48f7d5a4c22550db0af55be8132c92e11faa (diff)
downloadrsyslog-7af2c0a66b03db92a9ca1faae6c37c8fdc666c0e.tar.gz
rsyslog-7af2c0a66b03db92a9ca1faae6c37c8fdc666c0e.tar.xz
rsyslog-7af2c0a66b03db92a9ca1faae6c37c8fdc666c0e.zip
moved udp net code - again, stage work
Diffstat (limited to 'threads.c')
-rw-r--r--threads.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/threads.c b/threads.c
index ea0fb19b..4b86534d 100644
--- a/threads.c
+++ b/threads.c
@@ -256,8 +256,10 @@ thrdSleep(thrdInfo_t *pThis, int iSeconds, int iuSeconds)
select(1, NULL, NULL, NULL, &tvSelectTimeout);
if(pThis->bShallStop)
iRet = RS_RET_TERMINATE_NOW;
+#if 0 /* TODO: remove once we know we do not need the thrdBlockTermination() call -- rgerhards, 2007.12.25 */
else
thrdBlockTermination(pThis);
+#endif
return iRet;
}