From 236e2a5f73de889692a7f4197257059ee805ebc9 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Thu, 3 Jan 2008 15:58:10 +0000 Subject: added $MainMsgQueueType config parameter --- queue.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'queue.h') 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: */ -- cgit