summaryrefslogtreecommitdiffstats
path: root/queue.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-03 15:58:10 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-03 15:58:10 +0000
commit236e2a5f73de889692a7f4197257059ee805ebc9 (patch)
treec326c4ed414ae62c72ee20f1153c0067d68b4c37 /queue.h
parent0edfa2415457fca76cc85976a4bcf2ae54f2144d (diff)
downloadrsyslog-236e2a5f73de889692a7f4197257059ee805ebc9.tar.gz
rsyslog-236e2a5f73de889692a7f4197257059ee805ebc9.tar.xz
rsyslog-236e2a5f73de889692a7f4197257059ee805ebc9.zip
added $MainMsgQueueType config parameter
Diffstat (limited to 'queue.h')
-rw-r--r--queue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/queue.h b/queue.h
index b660c44f..d119eab7 100644
--- a/queue.h
+++ b/queue.h
@@ -27,8 +27,8 @@
/* queue types */
typedef enum {
- QUEUETYPE_FIXED_ARRAY,/* a simple queue made out of a fixed (initially malloced) array fast but memoryhog */
- QUEUETYPE_LINKEDLIST,/* linked list used as buffer, lower fixed memory overhead but slower */
+ QUEUETYPE_FIXED_ARRAY = 0,/* a simple queue made out of a fixed (initially malloced) array fast but memoryhog */
+ QUEUETYPE_LINKEDLIST = 1 /* linked list used as buffer, lower fixed memory overhead but slower */
} queueType_t;
/* list member definition for linked list types of queues: */