diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-11-07 12:57:36 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-11-07 12:57:36 +0100 |
commit | fb81cf202c0277f48c75f777fa47e4db4e59f0a3 (patch) | |
tree | 804c7265d82e0bb7127b31a9a7d68cc4b616e279 /runtime/queue.h | |
parent | ec32919ca05598f11f538060c406d8668a35e229 (diff) | |
parent | 9035771b7dbea738b8a22949a7f0a6514525fafb (diff) | |
download | rsyslog-fb81cf202c0277f48c75f777fa47e4db4e59f0a3.tar.gz rsyslog-fb81cf202c0277f48c75f777fa47e4db4e59f0a3.tar.bz2 rsyslog-fb81cf202c0277f48c75f777fa47e4db4e59f0a3.zip |
Merge branch 'master' into master-ruleeng
Conflicts:
runtime/wti.c
runtime/wti.h
Diffstat (limited to 'runtime/queue.h')
-rw-r--r-- | runtime/queue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/queue.h b/runtime/queue.h index 91900b30..8e789ebd 100644 --- a/runtime/queue.h +++ b/runtime/queue.h @@ -122,7 +122,7 @@ struct queue_s { /* synchronization variables */ pthread_mutex_t mutThrdMgmt; /* mutex for the queue's thread management */ pthread_mutex_t *mut; /* mutex for enqueing and dequeueing messages */ - pthread_cond_t notFull, notEmpty; + pthread_cond_t notFull; pthread_cond_t belowFullDlyWtrMrk; /* below eFLOWCTL_FULL_DELAY watermark */ pthread_cond_t belowLightDlyWtrMrk; /* below eFLOWCTL_FULL_DELAY watermark */ int bThrdStateChanged; /* at least one thread state has changed if 1 */ |