summaryrefslogtreecommitdiffstats
path: root/threads.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-08-22 15:29:02 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-08-22 15:29:02 +0200
commit9faf2240c4a8f09f3f6c2c9bbd47e48520524e03 (patch)
tree3ce400e560526e78039a31465d9a92eb2314464c /threads.c
parent8985d50fea62e1794c8e1a12d09733007869a6b4 (diff)
downloadrsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.tar.gz
rsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.tar.xz
rsyslog-9faf2240c4a8f09f3f6c2c9bbd47e48520524e03.zip
changed TRUE/FALSE to RSTRUE/RSFALSE
This is done to prevent name claches with libraries.
Diffstat (limited to 'threads.c')
-rw-r--r--threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/threads.c b/threads.c
index 1aca6dbc..182b4789 100644
--- a/threads.c
+++ b/threads.c
@@ -96,7 +96,7 @@ thrdTerminateNonCancel(thrdInfo_t *pThis)
assert(pThis != NULL);
DBGPRINTF("request term via SIGTTIN for input thread 0x%x\n", (unsigned) pThis->thrdID);
- pThis->bShallStop = TRUE;
+ pThis->bShallStop = RSTRUE;
do {
d_pthread_mutex_lock(&pThis->mutThrd);
pthread_kill(pThis->thrdID, SIGTTIN);