diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-18 16:01:07 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-18 16:01:07 +0000 |
commit | 2bd1e283527bae01d61b85682a7e8ecc778997a8 (patch) | |
tree | f76419b016a63a5bd10a347f67598cebd2bb6b0f /queue.h | |
parent | 1acd5c7a51432e80e0670df38667f4af445228c5 (diff) | |
download | rsyslog-2bd1e283527bae01d61b85682a7e8ecc778997a8.tar.gz rsyslog-2bd1e283527bae01d61b85682a7e8ecc778997a8.tar.xz rsyslog-2bd1e283527bae01d61b85682a7e8ecc778997a8.zip |
- created an in-depth description of DA assisted queue mode
- snapshot of new thread coding - DA mode still does not work, but need to
save
Diffstat (limited to 'queue.h')
-rw-r--r-- | queue.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -88,6 +88,7 @@ typedef struct queue_s { int bEnqOnly; /* does queue run in enqueue-only mode (1) or not (0)? */ int bSaveOnShutdown;/* persists everthing on shutdown (if DA!)? 1-yes, 0-no */ int bQueueStarted; /* has queueStart() been called on this queue? 1-yes, 0-no */ + int bQueueInDestruction;/* 1 if queue is in destruction process, 0 otherwise */ int iQueueSize; /* Current number of elements in the queue */ int iMaxQueueSize; /* how large can the queue grow? */ int iNumWorkerThreads;/* number of worker threads to use */ |